Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
import { getJsonSchema } from "../../../../services/chart/core.js";
|
||||
import { instanceChart } from "../../../../services/chart/index.js";
|
||||
import define from "../../define.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"charts"
|
||||
],
|
||||
requireCredentialPrivateMode: true,
|
||||
res: getJsonSchema(instanceChart.schema),
|
||||
allowGet: true,
|
||||
cacheSec: 60 * 60
|
||||
};
|
||||
export const paramDef = {
|
||||
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"
|
||||
}
|
||||
},
|
||||
required: [
|
||||
"span",
|
||||
"host"
|
||||
]
|
||||
};
|
||||
export default define(meta, paramDef, async (ps)=>{
|
||||
return await instanceChart.getChart(ps.span, ps.limit, ps.offset ? new Date(ps.offset) : null, ps.host);
|
||||
});
|
||||
Reference in New Issue
Block a user