mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-19 08:26:06 +00:00
5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
|
|
import { TopOperationList } from './TopOperationsTable';
|
||
|
|
|
||
|
|
export const getErrorRate = (list: TopOperationList): number =>
|
||
|
|
(list.errorCount / list.numCalls) * 100;
|