import autobind from 'autobind-decorator'; import Chart, { DeepPartial } from '../core'; import { SchemaType } from '@/misc/schema'; import { name, schema } from './entities/network'; type NetworkLog = SchemaType; /** * ネットワークに関するチャート */ // eslint-disable-next-line import/no-default-export export default class NetworkChart extends Chart { constructor() { super(name, schema); } @autobind protected genNewLog(latest: NetworkLog): DeepPartial { return {}; } @autobind protected aggregate(logs: NetworkLog[]): NetworkLog { return { incomingRequests: logs.reduce((a, b) => a + b.incomingRequests, 0), outgoingRequests: logs.reduce((a, b) => a + b.outgoingRequests, 0), totalTime: logs.reduce((a, b) => a + b.totalTime, 0), incomingBytes: logs.reduce((a, b) => a + b.incomingBytes, 0), outgoingBytes: logs.reduce((a, b) => a + b.outgoingBytes, 0), }; } @autobind protected async fetchActual(): Promise> { return {}; } @autobind public async update(incomingRequests: number, time: number, incomingBytes: number, outgoingBytes: number): Promise { const inc: DeepPartial = { incomingRequests: incomingRequests, totalTime: time, incomingBytes: incomingBytes, outgoingBytes: outgoingBytes, }; await this.inc(inc); } }