INNER CODE UNIT · TypeScript
performanceMatrix
envoyproxy/gateway · site/tools/benchmark-dashboard/src/data/index.ts:279
export const performanceMatrix = benchmarkResults.map(result => ({
testName: result.testName,
routes: result.routes,
phase: result.phase,
throughput: result.throughput,
meanLatency: result.latency.mean,
p95Latency: result.latency.percentiles.p95,
totalMemory: result.resources.envoyGateway.memory.mean + result.resources.envoyProxy.memory.mean,
totalCpu: result.resources.envoyGateway.cpu.mean + result.resources.envoyProxy.cpu.mean
}));