in src/components/graphs/MemorySpecs/storageEngineMetrics.tsx [122:155]
<CardTitle>P99 Latency Test (Set Method)</CardTitle>
</CardHeader>
<CardContent className="p-6 flex flex-col items-center justify-center">
{!isCalculating && p99Value === 0 ? (
<Button
onClick={calculateP99}
className="w-32 h-32 rounded-full text-2xl font-bold"
disabled={isCalculating}
>
GO
</Button>
) : (
<div className="w-full h-48 relative">
<GaugeChart
style={{ height: "12rem" }}
id="p99-gauge-chart"
nrOfLevels={10}
colors={["#10B981", "#FBBF24", "#EF4444"]}
percent={calculatPercent()}
textColor="#000000"
needleColor="#5C6BC0"
needleBaseColor="#3949AB"
arcWidth={0.2}
formatTextValue={() => ""}
/>
<div className="absolute inset-0 flex items-center justify-center">
<div className="text-xl font-bold">
{isCalculating
? `${animatedValue.toFixed(1)}s`
: `${p99Value.toFixed(1)}ms`}
</div>
</div>
</div>
)}