| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 | <template>	<div class="container">		<metadata title="Admin | Statistics" />		<div class="columns">			<div				class="card column is-10-desktop is-offset-1-desktop is-12-mobile"			>				<header class="card-header">					<p class="card-header-title">						Average Logs					</p>				</header>				<div class="card-content">					<div class="content">						<table class="table">							<thead>								<tr>									<th />									<th>Success</th>									<th>Error</th>									<th>Info</th>								</tr>							</thead>							<tbody>								<tr>									<th><strong>Average per second</strong></th>									<th :title="logs.second.success">										{{ round(logs.second.success) }}									</th>									<th :title="logs.second.error">										{{ round(logs.second.error) }}									</th>									<th :title="logs.second.info">										{{ round(logs.second.info) }}									</th>								</tr>								<tr>									<th><strong>Average per minute</strong></th>									<th :title="logs.minute.success">										{{ round(logs.minute.success) }}									</th>									<th :title="logs.minute.error">										{{ round(logs.minute.error) }}									</th>									<th :title="logs.minute.info">										{{ round(logs.minute.info) }}									</th>								</tr>								<tr>									<th><strong>Average per hour</strong></th>									<th :title="logs.hour.success">										{{ round(logs.hour.success) }}									</th>									<th :title="logs.hour.error">										{{ round(logs.hour.error) }}									</th>									<th :title="logs.hour.info">										{{ round(logs.hour.info) }}									</th>								</tr>								<tr>									<th><strong>Average per day</strong></th>									<th :title="logs.day.success">										{{ round(logs.day.success) }}									</th>									<th :title="logs.day.error">										{{ round(logs.day.error) }}									</th>									<th :title="logs.day.info">										{{ round(logs.day.info) }}									</th>								</tr>							</tbody>						</table>					</div>				</div>			</div>		</div>		<br />		<div class="columns">			<div				class="card column is-10-desktop is-offset-1-desktop is-12-mobile"			>				<div class="card-content">					<div class="content">						<canvas id="minuteChart" height="400" />					</div>				</div>			</div>		</div>		<br />		<div class="columns">			<div				class="card column is-10-desktop is-offset-1-desktop is-12-mobile"			>				<div class="card-content">					<div class="content">						<canvas id="hourChart" height="400" />					</div>				</div>			</div>		</div>	</div></template><script>import { Line } from "chart.js";import "chartjs-adapter-date-fns";import io from "../../io";export default {	components: {},	data() {		return {			successUnitsPerMinute: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			errorUnitsPerMinute: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			infoUnitsPerMinute: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			successUnitsPerHour: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			errorUnitsPerHour: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			infoUnitsPerHour: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],			minuteChart: null,			hourChart: null,			logs: {				second: {					success: 0,					error: 0,					info: 0				},				minute: {					success: 0,					error: 0,					info: 0				},				hour: {					success: 0,					error: 0,					info: 0				},				day: {					success: 0,					error: 0,					info: 0				}			}		};	},	mounted() {		const minuteCtx = document.getElementById("minuteChart");		const hourCtx = document.getElementById("hourChart");		this.minuteChart = new Line(minuteCtx, {			data: {				labels: [					"-10",					"-9",					"-8",					"-7",					"-6",					"-5",					"-4",					"-3",					"-2",					"-1"				],				datasets: [					{						label: "Success",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(75, 192, 192, 0.2)"],						borderColor: ["rgba(75, 192, 192, 1)"],						borderWidth: 1					},					{						label: "Error",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(255, 99, 132, 0.2)"],						borderColor: ["rgba(255,99,132,1)"],						borderWidth: 1					},					{						label: "Info",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(54, 162, 235, 0.2)"],						borderColor: ["rgba(54, 162, 235, 1)"],						borderWidth: 1					}				]			},			options: {				title: {					display: true,					text: "Logs per minute"				},				scales: {					yAxes: [						{							ticks: {								beginAtZero: true,								stepSize: 1							}						}					]				},				responsive: true,				maintainAspectRatio: false			}		});		this.hourChart = new Line(hourCtx, {			data: {				labels: [					"-10",					"-9",					"-8",					"-7",					"-6",					"-5",					"-4",					"-3",					"-2",					"-1"				],				datasets: [					{						label: "Success",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(75, 192, 192, 0.2)"],						borderColor: ["rgba(75, 192, 192, 1)"],						borderWidth: 1					},					{						label: "Error",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(255, 99, 132, 0.2)"],						borderColor: ["rgba(255,99,132,1)"],						borderWidth: 1					},					{						label: "Info",						data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],						backgroundColor: ["rgba(54, 162, 235, 0.2)"],						borderColor: ["rgba(54, 162, 235, 1)"],						borderWidth: 1					}				]			},			options: {				title: {					display: true,					text: "Logs per hour"				},				scales: {					yAxes: [						{							ticks: {								beginAtZero: true,								stepSize: 1							}						}					]				},				responsive: true,				maintainAspectRatio: false			}		});		io.getSocket(socket => {			this.socket = socket;			if (this.socket.connected) this.init();			io.onConnect(() => this.init());		});	},	methods: {		init() {			this.socket.emit("apis.joinAdminRoom", "statistics", () => {});			this.socket.on(				"event:admin.statistics.success.units.minute",				units => {					this.successUnitsPerMinute = units;					this.minuteChart.data.datasets[0].data = units;					this.minuteChart.update();				}			);			this.socket.on(				"event:admin.statistics.error.units.minute",				units => {					this.errorUnitsPerMinute = units;					this.minuteChart.data.datasets[1].data = units;					this.minuteChart.update();				}			);			this.socket.on(				"event:admin.statistics.info.units.minute",				units => {					this.infoUnitsPerMinute = units;					this.minuteChart.data.datasets[2].data = units;					this.minuteChart.update();				}			);			this.socket.on(				"event:admin.statistics.success.units.hour",				units => {					this.successUnitsPerHour = units;					this.hourChart.data.datasets[0].data = units;					this.hourChart.update();				}			);			this.socket.on("event:admin.statistics.error.units.hour", units => {				this.errorUnitsPerHour = units;				this.hourChart.data.datasets[1].data = units;				this.hourChart.update();			});			this.socket.on("event:admin.statistics.info.units.hour", units => {				this.infoUnitsPerHour = units;				this.hourChart.data.datasets[2].data = units;				this.hourChart.update();			});			this.socket.on("event:admin.statistics.logs", logs => {				this.logs = logs;			});		},		round(number) {			return Math.round(number);		}	}};</script><style lang="scss" scoped>@import "styles/global.scss";.night-mode {	.table {		color: #ddd;		background-color: #222;		thead tr {			background: $night-mode-secondary;			td {				color: #fff;			}		}		tbody tr:hover {			background-color: #111 !important;		}		tbody tr:nth-child(even) {			background-color: #444;		}		strong {			color: #ddd;		}	}	.card {		background-color: $night-mode-secondary;		p {			color: #ddd;		}	}}body {	font-family: "Roboto", sans-serif;}.user-avatar {	display: block;	max-width: 50px;	margin: 0 auto;}td {	vertical-align: middle;}.is-primary:focus {	background-color: $primary-color !important;}</style>
 |