mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 12:13:09 +02:00
8a6791da3f
* Remove unused injections * Remove unused imports
68 lines
2.5 KiB
TypeScript
68 lines
2.5 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import type Logger from '@/logger.js';
|
|
import FederationChart from '@/core/chart/charts/federation.js';
|
|
import NotesChart from '@/core/chart/charts/notes.js';
|
|
import UsersChart from '@/core/chart/charts/users.js';
|
|
import ActiveUsersChart from '@/core/chart/charts/active-users.js';
|
|
import InstanceChart from '@/core/chart/charts/instance.js';
|
|
import PerUserNotesChart from '@/core/chart/charts/per-user-notes.js';
|
|
import PerUserPvChart from '@/core/chart/charts/per-user-pv.js';
|
|
import DriveChart from '@/core/chart/charts/drive.js';
|
|
import PerUserReactionsChart from '@/core/chart/charts/per-user-reactions.js';
|
|
import PerUserFollowingChart from '@/core/chart/charts/per-user-following.js';
|
|
import PerUserDriveChart from '@/core/chart/charts/per-user-drive.js';
|
|
import ApRequestChart from '@/core/chart/charts/ap-request.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { QueueLoggerService } from '../QueueLoggerService.js';
|
|
import type * as Bull from 'bullmq';
|
|
|
|
@Injectable()
|
|
export class TickChartsProcessorService {
|
|
private logger: Logger;
|
|
|
|
constructor(
|
|
private federationChart: FederationChart,
|
|
private notesChart: NotesChart,
|
|
private usersChart: UsersChart,
|
|
private activeUsersChart: ActiveUsersChart,
|
|
private instanceChart: InstanceChart,
|
|
private perUserNotesChart: PerUserNotesChart,
|
|
private perUserPvChart: PerUserPvChart,
|
|
private driveChart: DriveChart,
|
|
private perUserReactionsChart: PerUserReactionsChart,
|
|
private perUserFollowingChart: PerUserFollowingChart,
|
|
private perUserDriveChart: PerUserDriveChart,
|
|
private apRequestChart: ApRequestChart,
|
|
|
|
private queueLoggerService: QueueLoggerService,
|
|
) {
|
|
this.logger = this.queueLoggerService.logger.createSubLogger('tick-charts');
|
|
}
|
|
|
|
@bindThis
|
|
public async process(): Promise<void> {
|
|
this.logger.info('Tick charts...');
|
|
|
|
await Promise.all([
|
|
this.federationChart.tick(false),
|
|
this.notesChart.tick(false),
|
|
this.usersChart.tick(false),
|
|
this.activeUsersChart.tick(false),
|
|
this.instanceChart.tick(false),
|
|
this.perUserNotesChart.tick(false),
|
|
this.perUserPvChart.tick(false),
|
|
this.driveChart.tick(false),
|
|
this.perUserReactionsChart.tick(false),
|
|
this.perUserFollowingChart.tick(false),
|
|
this.perUserDriveChart.tick(false),
|
|
this.apRequestChart.tick(false),
|
|
]);
|
|
|
|
this.logger.succ('All charts successfully ticked.');
|
|
}
|
|
}
|