diff --git a/frontend/src/modules/Metrics/ErrorRateChart.tsx b/frontend/src/modules/Metrics/ErrorRateChart.tsx index c91c21b4a4..116b29192c 100644 --- a/frontend/src/modules/Metrics/ErrorRateChart.tsx +++ b/frontend/src/modules/Metrics/ErrorRateChart.tsx @@ -206,7 +206,7 @@ class ErrorRateChart extends React.Component { labels: ndata.map((s) => new Date(s.timestamp / 1000000)), // converting from nano second to mili second datasets: [ { - label: "", + label: "Error Percentage (%)", data: ndata.map((s) => s.errorRate), pointRadius: 0.5, borderColor: "rgba(227, 74, 51,1)", // Can also add transparency in border color @@ -219,7 +219,7 @@ class ErrorRateChart extends React.Component { return (
{this.GraphTracePopUp()} -
Errors per sec
+
Error Percentage (%)