2021-08-10 07:34:47 -04:00
|
|
|
<template>
|
2021-08-18 00:21:16 -04:00
|
|
|
<LineChart :chart-data="chartData" :options="chartOptions" />
|
2021-08-10 07:34:47 -04:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-08-11 12:31:21 -04:00
|
|
|
import { BarController, BarElement, Chart, Filler, LinearScale, LineController, LineElement, PointElement, TimeScale, Tooltip } from "chart.js";
|
2021-08-10 07:34:47 -04:00
|
|
|
import dayjs from "dayjs";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import timezone from "dayjs/plugin/timezone";
|
|
|
|
import "chartjs-adapter-dayjs";
|
|
|
|
import { LineChart } from "vue-chart-3";
|
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(timezone);
|
|
|
|
|
2021-08-11 12:31:21 -04:00
|
|
|
Chart.register(LineController, BarController, LineElement, PointElement, TimeScale, BarElement, LinearScale, Tooltip, Filler);
|
2021-08-10 07:34:47 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { LineChart },
|
|
|
|
props: {
|
|
|
|
monitorId: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2021-08-24 12:54:52 -04:00
|
|
|
// Configurable filtering on top of the returned data
|
2021-08-11 09:00:33 -04:00
|
|
|
chartPeriodHrs: 6,
|
2021-08-10 07:34:47 -04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
chartOptions() {
|
|
|
|
return {
|
|
|
|
responsive: true,
|
2021-08-18 00:21:16 -04:00
|
|
|
maintainAspectRatio: false,
|
|
|
|
onResize: (chart) => {
|
|
|
|
chart.canvas.parentNode.style.position = "relative";
|
|
|
|
if (screen.width < 576) {
|
|
|
|
chart.canvas.parentNode.style.height = "275px";
|
|
|
|
} else if (screen.width < 768) {
|
|
|
|
chart.canvas.parentNode.style.height = "320px";
|
|
|
|
} else if (screen.width < 992) {
|
|
|
|
chart.canvas.parentNode.style.height = "300px";
|
|
|
|
} else {
|
|
|
|
chart.canvas.parentNode.style.height = "250px";
|
|
|
|
}
|
|
|
|
},
|
2021-08-10 07:34:47 -04:00
|
|
|
layout: {
|
|
|
|
padding: {
|
|
|
|
left: 10,
|
|
|
|
right: 30,
|
|
|
|
top: 30,
|
|
|
|
bottom: 10,
|
|
|
|
},
|
|
|
|
},
|
2021-08-11 09:00:33 -04:00
|
|
|
|
|
|
|
elements: {
|
|
|
|
point: {
|
2021-08-24 12:54:52 -04:00
|
|
|
// Hide points on chart unless mouse-over
|
2021-08-11 09:00:33 -04:00
|
|
|
radius: 0,
|
2021-08-24 12:54:52 -04:00
|
|
|
hitRadius: 100,
|
2021-08-11 09:00:33 -04:00
|
|
|
},
|
|
|
|
},
|
2021-08-10 07:34:47 -04:00
|
|
|
scales: {
|
|
|
|
x: {
|
|
|
|
type: "time",
|
|
|
|
time: {
|
2021-08-16 11:58:02 -04:00
|
|
|
minUnit: "minute",
|
|
|
|
round: "second",
|
|
|
|
tooltipFormat: "YYYY-MM-DD HH:mm:ss",
|
|
|
|
displayFormats: {
|
|
|
|
minute: "HH:mm",
|
|
|
|
hour: "MM-DD HH:mm",
|
|
|
|
}
|
2021-08-11 09:00:33 -04:00
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
maxRotation: 0,
|
2021-08-16 11:58:02 -04:00
|
|
|
autoSkipPadding: 30,
|
2021-08-11 09:00:33 -04:00
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
color: this.$root.theme === "light" ? "rgba(0,0,0,0.1)" : "rgba(255,255,255,0.1)",
|
2021-08-24 11:34:48 -04:00
|
|
|
offset: false,
|
2021-08-10 07:34:47 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
y: {
|
|
|
|
title: {
|
|
|
|
display: true,
|
2021-09-01 15:17:50 -04:00
|
|
|
text: this.$t("respTime"),
|
2021-08-10 07:34:47 -04:00
|
|
|
},
|
2021-08-11 09:00:33 -04:00
|
|
|
offset: false,
|
|
|
|
grid: {
|
|
|
|
color: this.$root.theme === "light" ? "rgba(0,0,0,0.1)" : "rgba(255,255,255,0.1)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
y1: {
|
|
|
|
display: false,
|
|
|
|
position: "right",
|
|
|
|
grid: {
|
|
|
|
drawOnChartArea: false,
|
|
|
|
},
|
|
|
|
min: 0,
|
|
|
|
max: 1,
|
|
|
|
offset: false,
|
|
|
|
},
|
2021-08-10 07:34:47 -04:00
|
|
|
},
|
|
|
|
bounds: "ticks",
|
|
|
|
plugins: {
|
2021-08-11 09:00:33 -04:00
|
|
|
tooltip: {
|
2021-08-11 12:31:21 -04:00
|
|
|
mode: "nearest",
|
|
|
|
intersect: false,
|
|
|
|
padding: 10,
|
2021-08-24 12:54:52 -04:00
|
|
|
backgroundColor: this.$root.theme === "light" ? "rgba(212,232,222,1.0)" : "rgba(32,42,38,1.0)",
|
|
|
|
bodyColor: this.$root.theme === "light" ? "rgba(12,12,18,1.0)" : "rgba(220,220,220,1.0)",
|
|
|
|
titleColor: this.$root.theme === "light" ? "rgba(12,12,18,1.0)" : "rgba(220,220,220,1.0)",
|
2021-08-11 09:00:33 -04:00
|
|
|
filter: function (tooltipItem) {
|
2021-08-24 12:54:52 -04:00
|
|
|
return tooltipItem.datasetIndex === 0; // Hide tooltip on Bar Chart
|
2021-08-11 09:00:33 -04:00
|
|
|
},
|
2021-08-11 12:31:21 -04:00
|
|
|
callbacks: {
|
|
|
|
label: (context) => {
|
|
|
|
return ` ${new Intl.NumberFormat().format(context.parsed.y)} ms`
|
|
|
|
},
|
|
|
|
}
|
2021-08-11 09:00:33 -04:00
|
|
|
},
|
2021-08-10 07:34:47 -04:00
|
|
|
legend: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
chartData() {
|
2021-08-24 12:54:52 -04:00
|
|
|
let pingData = []; // Ping Data for Line Chart, y-axis contains ping time
|
|
|
|
let downData = []; // Down Data for Bar Chart, y-axis is 1 if target is down, 0 if target is up
|
2021-08-10 07:34:47 -04:00
|
|
|
if (this.monitorId in this.$root.heartbeatList) {
|
2021-08-24 12:54:52 -04:00
|
|
|
this.$root.heartbeatList[this.monitorId]
|
2021-08-10 07:34:47 -04:00
|
|
|
.filter(
|
|
|
|
(beat) => dayjs.utc(beat.time).tz(this.$root.timezone).isAfter(dayjs().subtract(this.chartPeriodHrs, "hours")))
|
|
|
|
.map((beat) => {
|
2021-08-24 12:54:52 -04:00
|
|
|
const x = this.$root.datetime(beat.time);
|
|
|
|
pingData.push({
|
|
|
|
x,
|
2021-08-10 07:34:47 -04:00
|
|
|
y: beat.ping,
|
2021-08-24 12:54:52 -04:00
|
|
|
});
|
|
|
|
downData.push({
|
|
|
|
x,
|
2021-08-11 09:00:33 -04:00
|
|
|
y: beat.status === 0 ? 1 : 0,
|
2021-08-24 12:54:52 -04:00
|
|
|
})
|
2021-08-11 09:00:33 -04:00
|
|
|
});
|
2021-08-10 07:34:47 -04:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
datasets: [
|
|
|
|
{
|
2021-08-24 12:54:52 -04:00
|
|
|
// Line Chart
|
|
|
|
data: pingData,
|
2021-08-10 07:34:47 -04:00
|
|
|
fill: "origin",
|
|
|
|
tension: 0.2,
|
|
|
|
borderColor: "#5CDD8B",
|
|
|
|
backgroundColor: "#5CDD8B38",
|
2021-08-11 09:00:33 -04:00
|
|
|
yAxisID: "y",
|
|
|
|
},
|
|
|
|
{
|
2021-08-24 12:54:52 -04:00
|
|
|
// Bar Chart
|
2021-08-11 09:00:33 -04:00
|
|
|
type: "bar",
|
2021-08-24 12:54:52 -04:00
|
|
|
data: downData,
|
2021-08-11 09:00:33 -04:00
|
|
|
borderColor: "#00000000",
|
|
|
|
backgroundColor: "#DC354568",
|
|
|
|
yAxisID: "y1",
|
2021-08-24 11:34:48 -04:00
|
|
|
barThickness: "flex",
|
|
|
|
barPercentage: 1,
|
|
|
|
categoryPercentage: 1,
|
2021-08-10 07:34:47 -04:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|