2022-02-27 04:07:39 +02:00
|
|
|
import { entity as FederationChart } from './charts/entities/federation.js';
|
|
|
|
import { entity as NotesChart } from './charts/entities/notes.js';
|
|
|
|
import { entity as UsersChart } from './charts/entities/users.js';
|
|
|
|
import { entity as ActiveUsersChart } from './charts/entities/active-users.js';
|
|
|
|
import { entity as InstanceChart } from './charts/entities/instance.js';
|
|
|
|
import { entity as PerUserNotesChart } from './charts/entities/per-user-notes.js';
|
2023-01-01 10:45:49 +02:00
|
|
|
import { entity as PerUserPvChart } from './charts/entities/per-user-pv.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { entity as DriveChart } from './charts/entities/drive.js';
|
|
|
|
import { entity as PerUserReactionsChart } from './charts/entities/per-user-reactions.js';
|
|
|
|
import { entity as PerUserFollowingChart } from './charts/entities/per-user-following.js';
|
|
|
|
import { entity as PerUserDriveChart } from './charts/entities/per-user-drive.js';
|
|
|
|
import { entity as ApRequestChart } from './charts/entities/ap-request.js';
|
2021-08-19 12:33:41 +03:00
|
|
|
|
2022-06-05 14:37:24 +03:00
|
|
|
import { entity as TestChart } from './charts/entities/test.js';
|
|
|
|
import { entity as TestGroupedChart } from './charts/entities/test-grouped.js';
|
|
|
|
import { entity as TestUniqueChart } from './charts/entities/test-unique.js';
|
|
|
|
import { entity as TestIntersectionChart } from './charts/entities/test-intersection.js';
|
|
|
|
|
2021-12-14 11:12:37 +02:00
|
|
|
export const entities = [
|
|
|
|
FederationChart.hour, FederationChart.day,
|
|
|
|
NotesChart.hour, NotesChart.day,
|
|
|
|
UsersChart.hour, UsersChart.day,
|
|
|
|
ActiveUsersChart.hour, ActiveUsersChart.day,
|
|
|
|
InstanceChart.hour, InstanceChart.day,
|
|
|
|
PerUserNotesChart.hour, PerUserNotesChart.day,
|
2023-01-01 10:45:49 +02:00
|
|
|
PerUserPvChart.hour, PerUserPvChart.day,
|
2021-12-14 11:12:37 +02:00
|
|
|
DriveChart.hour, DriveChart.day,
|
|
|
|
PerUserReactionsChart.hour, PerUserReactionsChart.day,
|
|
|
|
PerUserFollowingChart.hour, PerUserFollowingChart.day,
|
|
|
|
PerUserDriveChart.hour, PerUserDriveChart.day,
|
2022-02-05 17:13:52 +02:00
|
|
|
ApRequestChart.hour, ApRequestChart.day,
|
2022-06-05 14:37:24 +03:00
|
|
|
|
|
|
|
...(process.env.NODE_ENV === 'test' ? [
|
|
|
|
TestChart.hour, TestChart.day,
|
|
|
|
TestGroupedChart.hour, TestGroupedChart.day,
|
|
|
|
TestUniqueChart.hour, TestUniqueChart.day,
|
|
|
|
TestIntersectionChart.hour, TestIntersectionChart.day,
|
|
|
|
] : []),
|
2021-12-14 11:12:37 +02:00
|
|
|
];
|