mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
feat: aggregate by label and type (#3047)
## About the changes We noticed in our instance that when we have the same label for different API types, it shows duplicated in the overview:  We're changing to this way of displaying info:  when the data in traffic looks like this:  --------- Co-authored-by: Nuno Góis <github@nunogois.com>
This commit is contained in:
parent
b98dd4d76c
commit
c5bb205d88
@ -5,7 +5,10 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
|
|||||||
import { Alert, styled } from '@mui/material';
|
import { Alert, styled } from '@mui/material';
|
||||||
import { unknownify } from 'utils/unknownify';
|
import { unknownify } from 'utils/unknownify';
|
||||||
import { useMemo } from 'react';
|
import { useMemo } from 'react';
|
||||||
import { RequestsPerSecondSchema } from 'openapi';
|
import {
|
||||||
|
RequestsPerSecondSchema,
|
||||||
|
RequestsPerSecondSchemaDataResultItem,
|
||||||
|
} from 'openapi';
|
||||||
import logoIcon from 'assets/icons/logoBg.svg';
|
import logoIcon from 'assets/icons/logoBg.svg';
|
||||||
import { formatAssetPath } from 'utils/formatPath';
|
import { formatAssetPath } from 'utils/formatPath';
|
||||||
|
|
||||||
@ -24,29 +27,45 @@ const isRecent = (value: ResultValue) => {
|
|||||||
type ResultValue = [number, string];
|
type ResultValue = [number, string];
|
||||||
|
|
||||||
interface INetworkApp {
|
interface INetworkApp {
|
||||||
label?: string;
|
label: string;
|
||||||
reqs: string;
|
reqs: number;
|
||||||
type: string;
|
type: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const toGraphData = (metrics?: RequestsPerSecondSchema) => {
|
const asNetworkAppData = (result: RequestsPerSecondSchemaDataResultItem) => {
|
||||||
const results = metrics?.data?.result;
|
|
||||||
return (
|
|
||||||
results
|
|
||||||
?.map(result => {
|
|
||||||
const values = (result.values || []) as ResultValue[];
|
const values = (result.values || []) as ResultValue[];
|
||||||
const data = values.filter(value => isRecent(value)) || [];
|
const data = values.filter(value => isRecent(value));
|
||||||
let reqs = 0;
|
const reqs = data.length ? parseFloat(data[data.length - 1][1]) : 0;
|
||||||
if (data.length) {
|
|
||||||
reqs = parseFloat(data[data.length - 1][1]);
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
label: unknownify(result.metric?.appName),
|
label: unknownify(result.metric?.appName),
|
||||||
reqs: reqs.toFixed(2),
|
reqs,
|
||||||
type: unknownify(result.metric?.endpoint?.split('/')[2]),
|
type: unknownify(result.metric?.endpoint?.split('/')[2]),
|
||||||
};
|
};
|
||||||
})
|
};
|
||||||
.filter(app => app.label !== 'unknown')
|
|
||||||
|
const summingReqsByLabelAndType = (
|
||||||
|
acc: {
|
||||||
|
[group: string]: INetworkApp;
|
||||||
|
},
|
||||||
|
current: INetworkApp
|
||||||
|
) => {
|
||||||
|
const groupBy = current.label + current.type;
|
||||||
|
acc[groupBy] = {
|
||||||
|
...current,
|
||||||
|
reqs: current.reqs + (acc[groupBy]?.reqs ?? 0),
|
||||||
|
};
|
||||||
|
return acc;
|
||||||
|
};
|
||||||
|
|
||||||
|
const toGraphData = (metrics?: RequestsPerSecondSchema) => {
|
||||||
|
const results =
|
||||||
|
metrics?.data?.result?.filter(result => result.metric?.appName) || [];
|
||||||
|
const aggregated = results
|
||||||
|
.map(asNetworkAppData)
|
||||||
|
.reduce(summingReqsByLabelAndType, {});
|
||||||
|
return (
|
||||||
|
Object.values(aggregated)
|
||||||
|
.map(app => ({ ...app, reqs: app.reqs.toFixed(2) }))
|
||||||
.filter(app => app.reqs !== '0.00') ?? []
|
.filter(app => app.reqs !== '0.00') ?? []
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@ -54,7 +73,7 @@ const toGraphData = (metrics?: RequestsPerSecondSchema) => {
|
|||||||
export const NetworkOverview = () => {
|
export const NetworkOverview = () => {
|
||||||
usePageTitle('Network - Overview');
|
usePageTitle('Network - Overview');
|
||||||
const { metrics } = useInstanceMetrics();
|
const { metrics } = useInstanceMetrics();
|
||||||
const apps: INetworkApp[] = useMemo(() => {
|
const apps = useMemo(() => {
|
||||||
return toGraphData(metrics);
|
return toGraphData(metrics);
|
||||||
}, [metrics]);
|
}, [metrics]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user