diff --git a/src/components/routes/dashboard.tsx b/src/components/routes/dashboard.tsx index 5ccb32caa..b264efc7e 100644 --- a/src/components/routes/dashboard.tsx +++ b/src/components/routes/dashboard.tsx @@ -84,7 +84,7 @@ const WrappedIngestCard = ({ ingester }) => { const [timer, setTimer] = useState(null); const [error, setError] = useState(null); const classes = useStyles(); - const busyness = (ingester.metrics.busy_seconds * ingester.metrics.busy_seconds_count) / ingester.instances / 60; + const busyness = (ingester.metrics.cpu_seconds * ingester.metrics.cpu_seconds_count) / ingester.instances / 60; useEffect(() => { if (ingester.processing_chance.critical !== 1) { @@ -146,25 +146,41 @@ const WrappedIngestCard = ({ ingester }) => {