feat(stats): add typed network stats response fields for bandwidth, domain activity, and protocol distribution

This commit is contained in:
2026-04-13 12:07:13 +00:00
parent f2d0a9ec1b
commit fa926eb10b
5 changed files with 17 additions and 8 deletions

View File

@@ -522,14 +522,13 @@ export const fetchNetworkStatsAction = networkStatePart.createAction(async (stat
});
// Get network stats for throughput and IP data
const networkStatsRequest = new plugins.domtools.plugins.typedrequest.TypedRequest(
'/typedrequest',
'getNetworkStats'
);
const networkStatsRequest = new plugins.domtools.plugins.typedrequest.TypedRequest<
interfaces.requests.IReq_GetNetworkStats
>('/typedrequest', 'getNetworkStats');
const networkStatsResponse = await networkStatsRequest.fire({
identity: context.identity,
}) as any;
});
// Use the connections data for the connection list
// and network stats for throughput and IP analytics