1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/routes/admin-api/metrics.ts
2021-09-13 10:23:57 +02:00

99 lines
3.3 KiB
TypeScript

import { Request, Response } from 'express';
import Controller from '../controller';
import { UPDATE_APPLICATION } from '../../types/permissions';
import { IUnleashConfig } from '../../types/option';
import { IUnleashServices } from '../../types/services';
import { Logger } from '../../logger';
import ClientMetricsService from '../../services/client-metrics';
class MetricsController extends Controller {
private logger: Logger;
private metrics: ClientMetricsService;
constructor(
config: IUnleashConfig,
{
clientMetricsService,
}: Pick<IUnleashServices, 'clientMetricsService'>,
) {
super(config);
this.logger = config.getLogger('/admin-api/metrics.ts');
this.metrics = clientMetricsService;
this.get('/seen-toggles', this.getSeenToggles);
this.get('/seen-apps', this.getSeenApps);
this.get('/feature-toggles', this.getFeatureToggles);
this.get('/feature-toggles/:name', this.getFeatureToggle);
this.post(
'/applications/:appName',
this.createApplication,
UPDATE_APPLICATION,
);
this.delete(
'/applications/:appName',
this.deleteApplication,
UPDATE_APPLICATION,
);
this.get('/applications/', this.getApplications);
this.get('/applications/:appName', this.getApplication);
}
async getSeenToggles(req: Request, res: Response): Promise<void> {
const seenAppToggles = await this.metrics.getAppsWithToggles();
res.json(seenAppToggles);
}
async getSeenApps(req: Request, res: Response): Promise<void> {
const seenApps = await this.metrics.getSeenApps();
res.json(seenApps);
}
async getFeatureToggles(req: Request, res: Response): Promise<void> {
const toggles = await this.metrics.getTogglesMetrics();
res.json(toggles);
}
async getFeatureToggle(req: Request, res: Response): Promise<void> {
const { name } = req.params;
const data = await this.metrics.getTogglesMetrics();
const lastHour = data.lastHour[name] || {};
const lastMinute = data.lastMinute[name] || {};
res.json({
lastHour,
lastMinute,
});
}
async deleteApplication(req: Request, res: Response): Promise<void> {
const { appName } = req.params;
await this.metrics.deleteApplication(appName);
res.status(200).end();
}
async createApplication(req: Request, res: Response): Promise<void> {
const input = { ...req.body, appName: req.params.appName };
await this.metrics.createApplication(input);
res.status(202).end();
}
async getApplications(req: Request, res: Response): Promise<void> {
const query = req.query.strategyName
? { strategyName: req.query.strategyName as string }
: {};
const applications = await this.metrics.getApplications(query);
res.json({ applications });
}
async getApplication(req: Request, res: Response): Promise<void> {
const { appName } = req.params;
const appDetails = await this.metrics.getApplication(appName);
res.json(appDetails);
}
}
export default MetricsController;
module.exports = MetricsController;