Skip to content

Commit

Permalink
chore: add the unit for vertex processing rates on ui (#1435)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeranYang authored Jan 4, 2024
1 parent 7fe3225 commit 9472651
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export function ProcessingRates({
foundRates.map((metric) => (
<TableRow key={metric.partition}>
<TableCell>{metric.partition}</TableCell>
<TableCell>{metric.oneM}</TableCell>
<TableCell>{metric.fiveM}</TableCell>
<TableCell>{metric.fifteenM}</TableCell>
<TableCell>{metric.oneM}/sec</TableCell>
<TableCell>{metric.fiveM}/sec</TableCell>
<TableCell>{metric.fifteenM}/sec</TableCell>
</TableRow>
))}
</TableBody>
Expand Down

0 comments on commit 9472651

Please sign in to comment.