* wip * wip * wip * wip * wip * wip * wip * Update core.ts * wip * wip * #7361 * delete network chart * federationChart強化 apRequestChart追加 * tweak
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
import Chart from '../../core';
|
|
|
|
export const name = 'perUserDrive';
|
|
|
|
export const schema = {
|
|
'totalCount': { accumulate: true },
|
|
'totalSize': { accumulate: true }, // in kilobyte
|
|
'incCount': { range: 'small' },
|
|
'incSize': {}, // in kilobyte
|
|
'decCount': { range: 'small' },
|
|
'decSize': {}, // in kilobyte
|
|
} as const;
|
|
|
|
export const entity = Chart.schemaToEntity(name, schema, true);
|