2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { getJsonSchema } from '@/services/chart/core.js';
|
|
|
|
import { instanceChart } from '@/services/chart/index.js';
|
2019-02-08 07:58:57 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['charts'],
|
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
res: getJsonSchema(instanceChart.schema),
|
|
|
|
} as const;
|
2020-03-06 16:04:36 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
span: { type: 'string', enum: ['day', 'hour'] },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 500, default: 30 },
|
|
|
|
offset: { type: 'integer', nullable: true, default: null },
|
|
|
|
host: { type: 'string' },
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['span', 'host'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-02-08 07:58:57 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
|
|
|
return await instanceChart.getChart(ps.span, ps.limit, ps.offset ? new Date(ps.offset) : null, ps.host);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|