2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2020-08-09 06:51:02 +00:00
|
|
|
<mk-container :body-togglable="false">
|
|
|
|
<template #header><slot name="title"></slot></template>
|
|
|
|
<div class="_content _table">
|
|
|
|
<div class="_row">
|
|
|
|
<div class="_cell"><div class="_label">Process</div>{{ activeSincePrevTick | number }}</div>
|
|
|
|
<div class="_cell"><div class="_label">Active</div>{{ active | number }}</div>
|
|
|
|
<div class="_cell"><div class="_label">Waiting</div>{{ waiting | number }}</div>
|
|
|
|
<div class="_cell"><div class="_label">Delayed</div>{{ delayed | number }}</div>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="_content" style="margin-bottom: -8px;">
|
|
|
|
<canvas ref="chart"></canvas>
|
|
|
|
</div>
|
2020-08-09 06:51:02 +00:00
|
|
|
</mk-container>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Chart from 'chart.js';
|
2020-08-09 06:51:02 +00:00
|
|
|
import MkContainer from '../../components/ui/container.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
const alpha = (hex, a) => {
|
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)!;
|
|
|
|
const r = parseInt(result[1], 16);
|
|
|
|
const g = parseInt(result[2], 16);
|
|
|
|
const b = parseInt(result[3], 16);
|
|
|
|
return `rgba(${r}, ${g}, ${b}, ${a})`;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-08-09 06:51:02 +00:00
|
|
|
components: {
|
|
|
|
MkContainer,
|
|
|
|
},
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
props: {
|
|
|
|
domain: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
connection: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
chart: null,
|
|
|
|
activeSincePrevTick: 0,
|
|
|
|
active: 0,
|
|
|
|
waiting: 0,
|
|
|
|
delayed: 0,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2020-08-09 06:51:02 +00:00
|
|
|
// TODO: var(--panel)の色が暗いか明るいかで判定する
|
|
|
|
const gridColor = this.$store.state.device.darkMode ? 'rgba(255, 255, 255, 0.1)' : 'rgba(0, 0, 0, 0.1)';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
Chart.defaults.global.defaultFontColor = getComputedStyle(document.documentElement).getPropertyValue('--fg');
|
|
|
|
|
|
|
|
this.chart = new Chart(this.$refs.chart, {
|
2020-08-10 03:15:58 +00:00
|
|
|
type: 'bar',
|
2020-01-29 19:37:25 +00:00
|
|
|
data: {
|
|
|
|
labels: [],
|
|
|
|
datasets: [{
|
|
|
|
label: 'Process',
|
|
|
|
pointRadius: 0,
|
|
|
|
lineTension: 0,
|
2020-08-10 03:15:58 +00:00
|
|
|
borderWidth: 0,
|
|
|
|
backgroundColor: '#00E396',
|
2020-01-29 19:37:25 +00:00
|
|
|
data: []
|
|
|
|
}, {
|
|
|
|
label: 'Active',
|
|
|
|
pointRadius: 0,
|
|
|
|
lineTension: 0,
|
2020-08-10 03:15:58 +00:00
|
|
|
borderWidth: 0,
|
|
|
|
backgroundColor: '#00BCD4',
|
2020-01-29 19:37:25 +00:00
|
|
|
data: []
|
|
|
|
}, {
|
|
|
|
label: 'Waiting',
|
|
|
|
pointRadius: 0,
|
|
|
|
lineTension: 0,
|
2020-08-10 03:15:58 +00:00
|
|
|
borderWidth: 0,
|
|
|
|
backgroundColor: '#FFB300',
|
2020-01-29 19:37:25 +00:00
|
|
|
data: []
|
|
|
|
}, {
|
|
|
|
label: 'Delayed',
|
2020-08-10 03:15:58 +00:00
|
|
|
order: -1,
|
|
|
|
type: 'line',
|
2020-01-29 19:37:25 +00:00
|
|
|
pointRadius: 0,
|
|
|
|
lineTension: 0,
|
|
|
|
borderWidth: 2,
|
|
|
|
borderColor: '#E53935',
|
|
|
|
borderDash: [5, 5],
|
|
|
|
fill: false,
|
|
|
|
data: []
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
aspectRatio: 3,
|
|
|
|
layout: {
|
|
|
|
padding: {
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
top: 8,
|
|
|
|
bottom: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
legend: {
|
|
|
|
position: 'bottom',
|
|
|
|
labels: {
|
|
|
|
boxWidth: 16,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
xAxes: [{
|
2020-08-10 03:15:58 +00:00
|
|
|
stacked: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
gridLines: {
|
2020-08-09 06:51:02 +00:00
|
|
|
display: false,
|
|
|
|
color: gridColor,
|
|
|
|
zeroLineColor: gridColor,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
display: false
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
yAxes: [{
|
2020-08-10 03:15:58 +00:00
|
|
|
stacked: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
position: 'right',
|
2020-08-09 06:51:02 +00:00
|
|
|
gridLines: {
|
|
|
|
display: true,
|
|
|
|
color: gridColor,
|
|
|
|
zeroLineColor: gridColor,
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
ticks: {
|
|
|
|
display: false,
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
intersect: false,
|
|
|
|
mode: 'index',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.connection.on('stats', this.onStats);
|
|
|
|
this.connection.on('statsLog', this.onStatsLog);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('stats', this.onStats);
|
|
|
|
this.connection.off('statsLog', this.onStatsLog);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onStats(stats) {
|
|
|
|
this.activeSincePrevTick = stats[this.domain].activeSincePrevTick;
|
|
|
|
this.active = stats[this.domain].active;
|
|
|
|
this.waiting = stats[this.domain].waiting;
|
|
|
|
this.delayed = stats[this.domain].delayed;
|
|
|
|
this.chart.data.labels.push('');
|
|
|
|
this.chart.data.datasets[0].data.push(stats[this.domain].activeSincePrevTick);
|
|
|
|
this.chart.data.datasets[1].data.push(stats[this.domain].active);
|
|
|
|
this.chart.data.datasets[2].data.push(stats[this.domain].waiting);
|
|
|
|
this.chart.data.datasets[3].data.push(stats[this.domain].delayed);
|
2020-08-10 03:15:58 +00:00
|
|
|
if (this.chart.data.datasets[0].data.length > 100) {
|
2020-01-29 19:37:25 +00:00
|
|
|
this.chart.data.labels.shift();
|
|
|
|
this.chart.data.datasets[0].data.shift();
|
|
|
|
this.chart.data.datasets[1].data.shift();
|
|
|
|
this.chart.data.datasets[2].data.shift();
|
|
|
|
this.chart.data.datasets[3].data.shift();
|
|
|
|
}
|
|
|
|
this.chart.update();
|
|
|
|
},
|
|
|
|
|
|
|
|
onStatsLog(statsLog) {
|
2020-07-27 14:25:37 +00:00
|
|
|
for (const stats of [...statsLog].reverse()) {
|
2020-01-29 19:37:25 +00:00
|
|
|
this.onStats(stats);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|