summaryrefslogtreecommitdiff
path: root/src/services/chart/charts/schemas/instance.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:24:21 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-06-08 14:24:21 +0900
commit55c549a9f83f25ac67fba888223faa9f98749b48 (patch)
tree09aba86b913d1ab4fd7049fe1e7961493e08c305 /src/services/chart/charts/schemas/instance.ts
parentrefactor type (diff)
downloadmisskey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.gz
misskey-55c549a9f83f25ac67fba888223faa9f98749b48.tar.bz2
misskey-55c549a9f83f25ac67fba888223faa9f98749b48.zip
Remove entity descriptions
#6627
Diffstat (limited to 'src/services/chart/charts/schemas/instance.ts')
-rw-r--r--src/services/chart/charts/schemas/instance.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/services/chart/charts/schemas/instance.ts b/src/services/chart/charts/schemas/instance.ts
index d2152a4ae7..785d6ae7ce 100644
--- a/src/services/chart/charts/schemas/instance.ts
+++ b/src/services/chart/charts/schemas/instance.ts
@@ -12,17 +12,14 @@ export const schema = {
failed: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '失敗したリクエスト数'
},
succeeded: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '成功したリクエスト数'
},
received: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '受信したリクエスト数'
},
}
},
@@ -34,17 +31,14 @@ export const schema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全投稿数'
},
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加した投稿数'
},
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少した投稿数'
},
diffs: {
@@ -54,19 +48,16 @@ export const schema = {
normal: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '通常の投稿数の差分'
},
reply: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'リプライの投稿数の差分'
},
renote: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: 'Renoteの投稿数の差分'
},
}
},
@@ -80,17 +71,14 @@ export const schema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全ユーザー数'
},
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加したユーザー数'
},
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少したユーザー数'
},
}
},
@@ -102,17 +90,14 @@ export const schema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全フォロー数'
},
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加したフォロー数'
},
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少したフォロー数'
},
}
},
@@ -124,17 +109,14 @@ export const schema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全フォロワー数'
},
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加したフォロワー数'
},
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少したフォロワー数'
},
}
},
@@ -146,32 +128,26 @@ export const schema = {
totalFiles: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全ドライブファイル数'
},
totalUsage: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '集計期間時点での、全ドライブファイルの合計サイズ'
},
incFiles: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加したドライブファイル数'
},
incUsage: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '増加したドライブ使用量'
},
decFiles: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少したドライブファイル数'
},
decUsage: {
type: 'number' as const,
optional: false as const, nullable: false as const,
- description: '減少したドライブ使用量'
},
}
},