diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-06 00:13:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-06 00:13:52 +0900 |
| commit | c1b264e4e9686804e1b8ea17ba39753c41bd205b (patch) | |
| tree | 041e794b683cf986f98fcc04a3d5a50a8dcb7554 /packages/backend/src/services/chart/entities.ts | |
| parent | enhance(client): improve chart rendering (diff) | |
| download | misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.tar.gz misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.tar.bz2 misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.zip | |
Improve chart engine (#8253)
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update core.ts
* wip
* wip
* #7361
* delete network chart
* federationChart強化 apRequestChart追加
* tweak
Diffstat (limited to 'packages/backend/src/services/chart/entities.ts')
| -rw-r--r-- | packages/backend/src/services/chart/entities.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/services/chart/entities.ts b/packages/backend/src/services/chart/entities.ts index dedbd47080..569b328557 100644 --- a/packages/backend/src/services/chart/entities.ts +++ b/packages/backend/src/services/chart/entities.ts @@ -1,7 +1,6 @@ import { entity as FederationChart } from './charts/entities/federation'; import { entity as NotesChart } from './charts/entities/notes'; import { entity as UsersChart } from './charts/entities/users'; -import { entity as NetworkChart } from './charts/entities/network'; import { entity as ActiveUsersChart } from './charts/entities/active-users'; import { entity as InstanceChart } from './charts/entities/instance'; import { entity as PerUserNotesChart } from './charts/entities/per-user-notes'; @@ -10,12 +9,12 @@ import { entity as PerUserReactionsChart } from './charts/entities/per-user-reac import { entity as HashtagChart } from './charts/entities/hashtag'; import { entity as PerUserFollowingChart } from './charts/entities/per-user-following'; import { entity as PerUserDriveChart } from './charts/entities/per-user-drive'; +import { entity as ApRequestChart } from './charts/entities/ap-request'; export const entities = [ FederationChart.hour, FederationChart.day, NotesChart.hour, NotesChart.day, UsersChart.hour, UsersChart.day, - NetworkChart.hour, NetworkChart.day, ActiveUsersChart.hour, ActiveUsersChart.day, InstanceChart.hour, InstanceChart.day, PerUserNotesChart.hour, PerUserNotesChart.day, @@ -24,4 +23,5 @@ export const entities = [ HashtagChart.hour, HashtagChart.day, PerUserFollowingChart.hour, PerUserFollowingChart.day, PerUserDriveChart.hour, PerUserDriveChart.day, + ApRequestChart.hour, ApRequestChart.day, ]; |