|
|
@ -24,7 +24,7 @@ import timezone from "dayjs/plugin/timezone";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import { LineChart } from "vue-chart-3";
|
|
|
|
import { LineChart } from "vue-chart-3";
|
|
|
|
import { useToast } from "vue-toastification";
|
|
|
|
import { useToast } from "vue-toastification";
|
|
|
|
import { DOWN } from "../util.ts";
|
|
|
|
import { DOWN, log } from "../util.ts";
|
|
|
|
|
|
|
|
|
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(timezone);
|
|
|
|
dayjs.extend(timezone);
|
|
|
@ -240,6 +240,9 @@ export default {
|
|
|
|
// And mirror latest change to this.heartbeatList
|
|
|
|
// And mirror latest change to this.heartbeatList
|
|
|
|
this.$watch(() => this.$root.heartbeatList[this.monitorId],
|
|
|
|
this.$watch(() => this.$root.heartbeatList[this.monitorId],
|
|
|
|
(heartbeatList) => {
|
|
|
|
(heartbeatList) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.debug("ping_chart", `this.chartPeriodHrs type ${typeof this.chartPeriodHrs}, value: ${this.chartPeriodHrs}`);
|
|
|
|
|
|
|
|
|
|
|
|
if (this.chartPeriodHrs !== "0") {
|
|
|
|
if (this.chartPeriodHrs !== "0") {
|
|
|
|
const newBeat = heartbeatList.at(-1);
|
|
|
|
const newBeat = heartbeatList.at(-1);
|
|
|
|
if (newBeat && dayjs.utc(newBeat.time) > dayjs.utc(this.heartbeatList.at(-1)?.time)) {
|
|
|
|
if (newBeat && dayjs.utc(newBeat.time) > dayjs.utc(this.heartbeatList.at(-1)?.time)) {
|
|
|
|