Skip to content

Commit

Permalink
Daily and weekly graph added
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatacconi committed Feb 27, 2024
1 parent 6d005f1 commit 25d3edb
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions app/sections/analytics/Analytics.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
<template>
<div>
<v-container>

<v-row class="pa-0">
<v-col lg="6" md="12" class="pl-lg-0 pr-lg-1 mx-md-0 px-md-0">
<dailygraph :environmentStatus="environmentStatus"></dailygraph>
</v-col>
<v-col lg="6" md="12" class="pr-lg-0 pl-lg-1 mx-md-0 px-md-0">
<weeklygraph :environmentStatus="environmentStatus"></weeklygraph>
</v-col>
</v-row>

<v-row class="pa-0">
<systemuptime></systemuptime>
<sysloadcomp></sysloadcomp>
<activetaskscomp></activetaskscomp>
<archivedtaskscomp></archivedtaskscomp>
<executedtaskscomp></executedtaskscomp>
<executedtaskserrorcomp></executedtaskserrorcomp>
<executionlogscomp></executionlogscomp>

</v-row>
</v-container>
</div>
Expand All @@ -19,10 +27,16 @@
<script>
module.exports = {
data: function() {
return {}
return {
environmentStatus: {}
}
},
components: {
'dailygraph': httpVueLoader('../../shareds/DailyGraph.vue' + '?v=' + new Date().getTime()),
'weeklygraph': httpVueLoader('../../shareds/WeeklyGraph.vue' + '?v=' + new Date().getTime()),
'systemuptime': httpVueLoader('../../../app/sections/analytics/SystemUptimeComp.vue' + '?v=' + new Date().getTime()),
'activetaskscomp': httpVueLoader('../../../app/sections/analytics/ActiveTasksComp.vue' + '?v=' + new Date().getTime()),
'archivedtaskscomp': httpVueLoader('../../../app/sections/analytics/ArchivedTasksComp.vue' + '?v=' + new Date().getTime()),
Expand Down

0 comments on commit 25d3edb

Please sign in to comment.