wip
This commit is contained in:
parent
94f25d9cdd
commit
a1c96d9bcb
|
@ -3,27 +3,15 @@ import { DataSource } from 'typeorm';
|
||||||
import { Endpoint } from '@/server/api/endpoint-base.js';
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||||||
import { DI } from '@/di-symbols.js';
|
import { DI } from '@/di-symbols.js';
|
||||||
|
|
||||||
export const meta = {
|
|
||||||
requireCredential: true,
|
|
||||||
requireAdmin: true,
|
|
||||||
|
|
||||||
tags: ['admin'],
|
|
||||||
} as const;
|
|
||||||
|
|
||||||
export const paramDef = {
|
|
||||||
type: 'object',
|
|
||||||
properties: {},
|
|
||||||
required: [],
|
|
||||||
} as const;
|
|
||||||
|
|
||||||
// eslint-disable-next-line import/no-default-export
|
// eslint-disable-next-line import/no-default-export
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
export default class extends Endpoint<'admin/get-index-stats'> {
|
||||||
|
name = 'admin/get-index-stats' as const;
|
||||||
constructor(
|
constructor(
|
||||||
@Inject(DI.db)
|
@Inject(DI.db)
|
||||||
private db: DataSource,
|
private db: DataSource,
|
||||||
) {
|
) {
|
||||||
super(meta, paramDef, async () => {
|
super(async () => {
|
||||||
const stats = await this.db.query('SELECT * FROM pg_indexes;').then(recs => {
|
const stats = await this.db.query('SELECT * FROM pg_indexes;').then(recs => {
|
||||||
const res = [] as { tablename: string; indexname: string; }[];
|
const res = [] as { tablename: string; indexname: string; }[];
|
||||||
for (const rec of recs) {
|
for (const rec of recs) {
|
||||||
|
|
|
@ -1465,7 +1465,27 @@ export const endpoints = {
|
||||||
},
|
},
|
||||||
res: undefined,
|
res: undefined,
|
||||||
}],
|
}],
|
||||||
}
|
},
|
||||||
|
'admin/get-index-stats': {
|
||||||
|
requireCredential: true,
|
||||||
|
requireAdmin: true,
|
||||||
|
|
||||||
|
tags: ['admin'],
|
||||||
|
|
||||||
|
defines: [{
|
||||||
|
req: undefined,
|
||||||
|
res: {
|
||||||
|
type: 'array',
|
||||||
|
items: {
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
tablename: { type: 'string' },
|
||||||
|
indexname: { type: 'string' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}],
|
||||||
|
},
|
||||||
} as const satisfies { [x: string]: IEndpointMeta; };
|
} as const satisfies { [x: string]: IEndpointMeta; };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue