2021-06-25 09:55:49 -04:00
|
|
|
<template>
|
|
|
|
<div v-if="$route.name === 'DashboardHome'">
|
2021-07-27 13:47:13 -04:00
|
|
|
<h1 class="mb-3">
|
|
|
|
Quick Stats
|
|
|
|
</h1>
|
2021-06-25 09:55:49 -04:00
|
|
|
|
|
|
|
<div class="shadow-box big-padding text-center">
|
|
|
|
<div class="row">
|
2021-07-27 13:47:13 -04:00
|
|
|
<div class="col">
|
2021-06-25 09:55:49 -04:00
|
|
|
<h3>Up</h3>
|
2021-06-27 04:10:55 -04:00
|
|
|
<span class="num">{{ stats.up }}</span>
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
2021-07-27 13:47:13 -04:00
|
|
|
<div class="col">
|
2021-06-25 09:55:49 -04:00
|
|
|
<h3>Down</h3>
|
2021-06-27 04:10:55 -04:00
|
|
|
<span class="num text-danger">{{ stats.down }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<h3>Unknown</h3>
|
|
|
|
<span class="num text-secondary">{{ stats.unknown }}</span>
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<h3>Pause</h3>
|
2021-06-27 04:10:55 -04:00
|
|
|
<span class="num text-secondary">{{ stats.pause }}</span>
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-27 13:47:13 -04:00
|
|
|
<div v-if="false" class="row">
|
2021-07-01 05:00:23 -04:00
|
|
|
<div class="col-3">
|
|
|
|
<h3>Uptime</h3>
|
|
|
|
<p>(24-hour)</p>
|
2021-07-27 13:47:13 -04:00
|
|
|
<span class="num" />
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
2021-07-01 05:00:23 -04:00
|
|
|
<div class="col-3">
|
|
|
|
<h3>Uptime</h3>
|
|
|
|
<p>(30-day)</p>
|
2021-07-27 13:47:13 -04:00
|
|
|
<span class="num" />
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-01 05:00:23 -04:00
|
|
|
</div>
|
2021-06-25 09:55:49 -04:00
|
|
|
|
2021-07-01 05:00:23 -04:00
|
|
|
<div class="shadow-box" style="margin-top: 25px;">
|
|
|
|
<table class="table table-borderless table-hover">
|
|
|
|
<thead>
|
2021-07-27 13:47:13 -04:00
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>DateTime</th>
|
|
|
|
<th>Message</th>
|
|
|
|
</tr>
|
2021-07-01 05:00:23 -04:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-07-27 13:47:13 -04:00
|
|
|
<tr v-for="(beat, index) in displayedRecords" :key="index">
|
|
|
|
<td>{{ beat.name }}</td>
|
|
|
|
<td><Status :status="beat.status" /></td>
|
|
|
|
<td><Datetime :value="beat.time" /></td>
|
|
|
|
<td>{{ beat.msg }}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr v-if="importantHeartBeatList.length === 0">
|
|
|
|
<td colspan="4">
|
|
|
|
No important events
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-07-01 05:00:23 -04:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-07-17 21:04:40 -04:00
|
|
|
|
|
|
|
<div class="d-flex justify-content-center kuma_pagination">
|
|
|
|
<pagination
|
|
|
|
v-model="page"
|
2021-07-27 13:47:13 -04:00
|
|
|
:records="importantHeartBeatList.length"
|
|
|
|
:per-page="perPage"
|
|
|
|
/>
|
2021-07-17 21:04:40 -04:00
|
|
|
</div>
|
2021-06-25 09:55:49 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<router-view ref="child" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-07-01 05:00:23 -04:00
|
|
|
import Status from "../components/Status.vue";
|
|
|
|
import Datetime from "../components/Datetime.vue";
|
2021-07-17 21:04:40 -04:00
|
|
|
import Pagination from "v-pagination-3";
|
|
|
|
|
2021-06-25 09:55:49 -04:00
|
|
|
export default {
|
2021-07-17 21:04:40 -04:00
|
|
|
components: {
|
|
|
|
Datetime,
|
|
|
|
Status,
|
|
|
|
Pagination,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
page: 1,
|
|
|
|
perPage: 25,
|
|
|
|
heartBeatList: [],
|
|
|
|
}
|
|
|
|
},
|
2021-06-25 09:55:49 -04:00
|
|
|
computed: {
|
2021-06-27 04:10:55 -04:00
|
|
|
stats() {
|
|
|
|
let result = {
|
|
|
|
up: 0,
|
|
|
|
down: 0,
|
|
|
|
unknown: 0,
|
|
|
|
pause: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
for (let monitorID in this.$root.monitorList) {
|
|
|
|
let beat = this.$root.lastHeartbeatList[monitorID];
|
|
|
|
let monitor = this.$root.monitorList[monitorID]
|
|
|
|
|
|
|
|
if (monitor && ! monitor.active) {
|
|
|
|
result.pause++;
|
|
|
|
} else if (beat) {
|
|
|
|
if (beat.status === 1) {
|
|
|
|
result.up++;
|
|
|
|
} else if (beat.status === 0) {
|
|
|
|
result.down++;
|
2021-07-19 12:23:06 -04:00
|
|
|
} else if (beat.status === 2) {
|
2021-07-27 13:47:13 -04:00
|
|
|
result.up++;
|
2021-06-27 04:10:55 -04:00
|
|
|
} else {
|
|
|
|
result.unknown++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result.unknown++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
},
|
2021-07-01 05:00:23 -04:00
|
|
|
|
|
|
|
importantHeartBeatList() {
|
|
|
|
let result = [];
|
|
|
|
|
|
|
|
for (let monitorID in this.$root.importantHeartbeatList) {
|
2021-07-27 13:47:13 -04:00
|
|
|
let list = this.$root.importantHeartbeatList[monitorID]
|
2021-07-01 05:00:23 -04:00
|
|
|
result = result.concat(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let beat of result) {
|
|
|
|
let monitor = this.$root.monitorList[beat.monitorID];
|
|
|
|
|
|
|
|
if (monitor) {
|
|
|
|
beat.name = monitor.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-01 05:05:02 -04:00
|
|
|
result.sort((a, b) => {
|
|
|
|
if (a.time > b.time) {
|
|
|
|
return -1;
|
2021-07-27 13:53:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a.time < b.time) {
|
2021-07-01 05:05:02 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2021-07-27 13:47:13 -04:00
|
|
|
|
|
|
|
return 0;
|
2021-07-01 05:05:02 -04:00
|
|
|
});
|
|
|
|
|
2021-07-17 21:04:40 -04:00
|
|
|
this.heartBeatList = result;
|
|
|
|
|
2021-07-01 05:00:23 -04:00
|
|
|
return result;
|
2021-07-17 21:04:40 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
displayedRecords() {
|
|
|
|
const startIndex = this.perPage * (this.page - 1);
|
|
|
|
const endIndex = startIndex + this.perPage;
|
|
|
|
return this.heartBeatList.slice(startIndex, endIndex);
|
|
|
|
},
|
2021-07-27 13:47:13 -04:00
|
|
|
},
|
2021-06-25 09:55:49 -04:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-08-08 01:47:29 -04:00
|
|
|
<style lang="scss" scoped>
|
2021-06-25 09:55:49 -04:00
|
|
|
@import "../assets/vars";
|
|
|
|
|
|
|
|
.num {
|
|
|
|
font-size: 30px;
|
|
|
|
color: $primary;
|
|
|
|
font-weight: bold;
|
2021-07-01 05:00:23 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow-box {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
transition: all ease-in-out 0.2ms;
|
|
|
|
}
|
2021-06-25 09:55:49 -04:00
|
|
|
}
|
|
|
|
</style>
|