Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update events that are used to determine VM session starts and stops #732

Merged
merged 17 commits into from
Dec 21, 2018
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
c8b3100
adding new start and stop events for cloud realm
eiffel777 Nov 20, 2018
565a9ab
adding updated tests and fixed bug in cloud_events_transient table de…
eiffel777 Nov 20, 2018
aeada1f
adding eslintrc files that were mistakenly removed
eiffel777 Nov 21, 2018
fcd5617
adding eslintrc file that was mistakenly removed
eiffel777 Nov 21, 2018
e014123
adding eslintrc file that was mistakenly removed
eiffel777 Nov 21, 2018
f8602c9
adding eslintrc file that was mistakenly removed
eiffel777 Nov 21, 2018
a4ed515
removing end_time from primary and increment key on cloud_events_tran…
eiffel777 Nov 26, 2018
bb9f392
Merge branch 'xdmod8.1' of https://github.com/ubccr/xdmod into update…
eiffel777 Dec 17, 2018
0282154
updating cloud data integration test
eiffel777 Dec 17, 2018
79c60ca
adding functionality for upgrading the cloud realm from 8.0 to 8.1 an…
eiffel777 Dec 19, 2018
84739d0
styles changes
eiffel777 Dec 19, 2018
09b67c5
Merge branch 'xdmod8.1' of https://github.com/ubccr/xdmod into update…
eiffel777 Dec 20, 2018
53a5b51
Merge branch 'xdmod8.1' of https://github.com/ubccr/xdmod into update…
eiffel777 Dec 20, 2018
8a81e68
changing upgrade script to inform uses to run re-ingestion manually i…
eiffel777 Dec 20, 2018
e4e1242
Merge branch 'xdmod8.1' of https://github.com/ubccr/xdmod into update…
eiffel777 Dec 21, 2018
ae52b0c
renaming realmEnabled to isRealmEnabled
eiffel777 Dec 21, 2018
9066759
Merge branch 'xdmod8.1' into update-start-stop-events
plessbd Dec 21, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions classes/ETL/Ingestor/CloudStateReconstructorTransformIngestor.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,22 @@
class CloudStateReconstructorTransformIngestor extends pdoIngestor implements iAction
{
// Discrete Event Types
// Start events
const START = 2;
const STOP = 4;
const TERMINATE = 6;
const RESUME = 8;
const STATE_REPORT = 16;
const UNSHELVE = 20;
const UNPAUSE = 57;
const UNSUSPEND = 61;
const POWER_ON = 59;

//End events
const STOP = 4;
const TERMINATE = 6;
const SUSPEND = 17;
const SHELVE = 19;
const UNSHELVE = 20;
const POWER_OFF = 45;
const PAUSE = 55;

private $_stop_event_ids;
private $_start_event_ids;
Expand All @@ -46,8 +54,8 @@ public function __construct(aOptions $options, EtlConfiguration $etlConfig, Log
{
parent::__construct($options, $etlConfig, $logger);

$this->_stop_event_ids = array(self::STOP, self::TERMINATE, self::SUSPEND, self::SHELVE);
$this->_start_event_ids = array(self::START, self::RESUME, self::STATE_REPORT, self::UNSHELVE);
$this->_stop_event_ids = array(self::STOP, self::TERMINATE, self::SUSPEND, self::SHELVE, self::POWER_OFF, self::PAUSE);
$this->_start_event_ids = array(self::START, self::RESUME, self::STATE_REPORT, self::UNSHELVE, self::UNPAUSE, self::UNSUSPEND, self::POWER_ON);
$this->_all_event_ids = array_merge($this->_start_event_ids, $this->_stop_event_ids);
$this->_end_time = $etlConfig->getVariableStore()->endDate ? date('Y-m-d H:i:s', strtotime($etlConfig->getVariableStore()->endDate)) : null;

Expand Down
9 changes: 8 additions & 1 deletion configuration/etl/etl_data.d/cloud_common/event_type.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,12 @@
[51, "RESIZE_END", "Resize Instance End", "End resizing of instance"],
[52, "RESIZE_PREP_START", "Instance Resize Prep Start", "Start prep for resizing instance"],
[53, "RESIZE_PREP_END", "Instance Resize Prep End", "End prep for resizing instance"],
[54, "START_SHELVE", "Start Shelve", "Start shelving of instance"]
[54, "PAUSE_START", "Start Pause Instance", "Start pausing an instance"],
[55, "PAUSE_END", "End Pause Instance", "End pausing an instance"],
[56, "UNPAUSE_START", "Start Unpause Instance", "Start Unpausing an instance"],
[57, "UNPAUSE_END", "End Unpause Instance", "End Unpausing an instance"],
[58, "POWER_ON_START", "Power On Instance Start", "Start powering on an instance"],
[59, "POWER_ON_END", "Power On Instance End", "End powering on an instance"],
[60, "UNSUSPEND_START", "Unsuspend Instance Start", "Start unsuspending an instance"],
[61, "UNSUSPEND_END", "Unsuspend Instance End", "End unsuspending an instance"]
]
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
[34, 42, "compute.instance.finish_resize.start"],
[35, 43, "compute.instance.finish_resize.end"],
[36, 44, "compute.instance.power_off.start"],
[37, 17, "compute.instance.power_off.end"],
[37, 45, "compute.instance.power_off.end"],
[38, 46, "compute.instance.rebuild.start"],
[39, 47, "compute.instance.rebuild.end"],
[40, 48, "compute.instance.resize.confirm.start"],
Expand All @@ -46,6 +46,13 @@
[44, 52, "compute.instance.resize.prep.start"],
[45, 53, "compute.instance.resize.prep.end"],
[46, 54, "compute.instance.shelve_offload.start"],
[47, 7, "compute.instance.power_on.start"],
[48, 8, "compute.instance.power_off.end"]
[47, 7, "compute.instance.resume.start"],
[48, 8, "compute.instance.resume.end"],
[49, 58, "compute.instance.power_on.start"],
[50, 59, "compute.instance.power_on.end"],
[51, 20, "compute.instance.unshelve.end"],
[52, 57, "compute.instance.unpause.end"],
[53, 61, "compute.instance.unsuspend.end"],
[54, 17, "compute.instance.suspend.end"],
[55, 55, "compute.instance.pause.end"]
]
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,19 @@
"name": "PRIMARY",
"columns": [
"resource_id",
"instance"
"instance",
"start_time",
"end_time"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why were these columns added?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I.e. why were both start and end added? Surely the start_time is sufficient to generate uniqueness. If you include the end_time does this have a problem when the data are aggregated tomorrow (since the end time of an instance may have changed - but not the start time).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I note that the cloud transient action that populates this table uses "resource_id ASC, instance_id ASC, start_time ASC" as the order by clause.

Copy link
Contributor Author

@eiffel777 eiffel777 Nov 21, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After thinking about it, I think that just using start time would be enough but as it is I don't think there will be an issue when you run aggregation the next day. The cloud_events_transient table is truncated every time aggregation is run so if you have a different end time for a session than the day before you will only get one row for that session with the new end time not two rows with the same start time but different end times.

I have no real strong feelings about this either way since I think both will work fine. If someone wants me to change it to just start_time I can do that.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought the plan was to update the code to not truncate the tables every day. If you add the end_time in then it will just have to be removed again soon.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know there was talk of making it so that you don't have to re-aggregate all the cloud data every time you run aggregation which would mean that the cloudfact tables would no longer be truncated everyday. I'm not sure what affect that would have on the cloud_events_transient table. If it's the case that it would no longer be truncated every time aggregation is run then the end_time would need to be removed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Of course the cloud_events_transient table would have to not be truncated - this table stores the facts. What design did you have in mind where the cloud_events_transient table could be truncated every day?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't have a design in mind. I don't think I'm the one that is going to make this change so I haven't really thought about it which is why I said I wasn't sure how any changes to how the aggregation is done would affect the cloud_events_transient table. Since it seems that we are going to change how the aggregation happens and that means the cloud_events_transient will no longer be truncated then I can remove the end_time.

],
"is_unique": true
},
{
"name": "increment_key",
"columns": [
"instance_id",
"resource_id"
"resource_id",
"start_time",
"end_time"
],
"is_unique": true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ start,end
"Instance Type","Average Wall Hours per Session"
c2.m4,52.40465278
c4.m16,35.26490741
c1.m4,24.49683934
c1.m1,1.10615741
c1.m4,23.19631766
c1.m1,1.10337963
c2.m8,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ start,end
"Instance Type","Average Wall Hours per Session"
c2.m4,52.40465278
c4.m16,35.26490741
c1.m4,24.49683934
c1.m1,1.10615741
c1.m4,23.19631766
c1.m1,1.10337963
c2.m8,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ start,end
"Instance Type","Average Wall Hours per Session"
c2.m4,52.40465278
c4.m16,35.26490741
c1.m4,24.49683934
c1.m1,1.10615741
c1.m4,23.19631766
c1.m1,1.10337963
c2.m8,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ start,end
"Instance Type","Average Wall Hours per Session"
c2.m4,52.40465278
c4.m16,35.26490741
c1.m4,24.49683934
c1.m1,1.10615741
c1.m4,23.19631766
c1.m1,1.10337963
c2.m8,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
Day,"[c2.m4] Average Wall Hours per Session","[c4.m16] Average Wall Hours per Session","[c1.m4] Average Wall Hours per Session","[c1.m1] Average Wall Hours per Session","[c2.m8] Average Wall Hours per Session"
2018-04-18,0.70833333,2.21361111,1.91267974,0.01555556,0.23583333
2018-04-19,7.89694444,0,6.31328431,0.23756944,0
2018-04-19,7.89694444,0,5.55785088,0.23340278,0
2018-04-20,24.00000000,0,4.90686111,0,0
2018-04-21,24.00000000,0,24.00000000,0,0
2018-04-22,24.00000000,0,24.00000000,0,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Month,"[c2.m4] Average Wall Hours per Session","[c4.m16] Average Wall Hours per Session","[c1.m4] Average Wall Hours per Session","[c1.m1] Average Wall Hours per Session","[c2.m8] Average Wall Hours per Session"
2018-04,52.40465278,35.26490741,24.49683934,1.10615741,0.23583333
2018-04,52.40465278,35.26490741,23.19631766,1.10337963,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Quarter,"[c2.m4] Average Wall Hours per Session","[c4.m16] Average Wall Hours per Session","[c1.m4] Average Wall Hours per Session","[c1.m1] Average Wall Hours per Session","[c2.m8] Average Wall Hours per Session"
"2018 Q2",52.40465278,35.26490741,24.49683934,1.10615741,0.23583333
"2018 Q2",52.40465278,35.26490741,23.19631766,1.10337963,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Year,"[c2.m4] Average Wall Hours per Session","[c4.m16] Average Wall Hours per Session","[c1.m4] Average Wall Hours per Session","[c1.m1] Average Wall Hours per Session","[c2.m8] Average Wall Hours per Session"
2018,52.40465278,35.26490741,24.49683934,1.10615741,0.23583333
2018,52.40465278,35.26490741,23.19631766,1.10337963,0.23583333
---------
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
Day,"[c1.m4] Core Hours: Total","[c4.m16] Core Hours: Total","[c2.m4] Core Hours: Total","[c1.m1] Core Hours: Total","[c2.m8] Core Hours: Total"
2018-04-18,32.5156,17.7089,1.4167,0.0156,0.4717
2018-04-19,107.3258,0,31.5878,0.9503,0
2018-04-19,105.5992,0,31.5878,0.9336,0
2018-04-20,49.0686,0,48.0000,0,0
2018-04-21,72.0000,0,48.0000,0,0
2018-04-22,72.0000,0,48.0000,0,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Ended"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Ended"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Ended"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Ended"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
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"
2018-04-18,10,1,1,2,1
2018-04-19,16,4,1,0,0
2018-04-19,18,4,1,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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
2018-04,37,6,4,3,1
2018-04,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
"2018 Q2",37,6,4,3,1
"2018 Q2",39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
2018,37,6,4,3,1
2018,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Active Sessions (Number of Sessions)"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Active Sessions (Number of Sessions)"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Active Sessions (Number of Sessions)"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Active Sessions (Number of Sessions)"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
Day,"[c1.m4] Number of Active Sessions (Number of Sessions)","[c1.m1] Number of Active Sessions (Number of Sessions)","[c2.m4] Number of Active Sessions (Number of Sessions)","[c4.m16] Number of Active Sessions (Number of Sessions)","[c2.m8] Number of Active Sessions (Number of Sessions)"
2018-04-18,17,1,1,2,1
2018-04-19,17,4,2,0,0
2018-04-19,19,4,2,0,0
2018-04-20,10,0,1,0,0
2018-04-21,3,0,1,0,0
2018-04-22,3,0,1,0,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Month,"[c1.m4] Number of Active Sessions (Number of Sessions)","[c1.m1] Number of Active Sessions (Number of Sessions)","[c2.m4] Number of Active Sessions (Number of Sessions)","[c4.m16] Number of Active Sessions (Number of Sessions)","[c2.m8] Number of Active Sessions (Number of Sessions)"
2018-04,37,6,4,3,1
2018-04,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Quarter,"[c1.m4] Number of Active Sessions (Number of Sessions)","[c1.m1] Number of Active Sessions (Number of Sessions)","[c2.m4] Number of Active Sessions (Number of Sessions)","[c4.m16] Number of Active Sessions (Number of Sessions)","[c2.m8] Number of Active Sessions (Number of Sessions)"
"2018 Q2",37,6,4,3,1
"2018 Q2",39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Year,"[c1.m4] Number of Active Sessions (Number of Sessions)","[c1.m1] Number of Active Sessions (Number of Sessions)","[c2.m4] Number of Active Sessions (Number of Sessions)","[c4.m16] Number of Active Sessions (Number of Sessions)","[c2.m8] Number of Active Sessions (Number of Sessions)"
2018,37,6,4,3,1
2018,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Started"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Started"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Started"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start,end
2018-04-18,2018-04-30
---------
"Instance Type","Number of Sessions Started"
c1.m4,37
c1.m4,39
c1.m1,6
c2.m4,4
c4.m16,3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
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"
2018-04-18,17,1,1,2,1
2018-04-19,10,4,2,0,0
2018-04-19,12,4,2,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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
2018-04,37,6,4,3,1
2018-04,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
"2018 Q2",37,6,4,3,1
"2018 Q2",39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ 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"
2018,37,6,4,3,1
2018,39,6,4,3,1
---------
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ start,end
---------
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"
2018-04-18,32.5156,0.7083,4.4272,0.0156,0.2358
2018-04-19,107.3258,15.7939,0,0.9503,0
2018-04-19,105.5992,15.7939,0,0.9336,0
2018-04-20,49.0686,24.0000,0,0,0
2018-04-21,72.0000,24.0000,0,0,0
2018-04-22,72.0000,24.0000,0,0,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Summary,"Average Wall Hours per Session"
Screwdriver,24.09155229
Screwdriver,23.14954403
---------
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ start,end
2018-04-18,2018-04-30
---------
Summary,"Average Wall Hours per Session"
Screwdriver,24.09155229
Screwdriver,23.14954403
---------
Loading