Update units from seconds to s

Signed-off-by: Kurt King <kurtaking@gmail.com>
This commit is contained in:
Kurt King
2026-03-15 13:25:39 -06:00
parent 5f1e7b8341
commit 05735acc57
@@ -48,17 +48,15 @@ export class IncrementalIngestionEngine implements IterationEngine {
this.lastStarted = options.metrics.createGauge(
'catalog_incremental.ingestions.started',
{
description:
'Epoch timestamp seconds when the ingestion was last started',
unit: 'seconds',
description: 'Epoch timestamp when the ingestion was last started',
unit: 's',
},
);
this.lastCompleted = options.metrics.createGauge(
'catalog_incremental.ingestions.completed',
{
description:
'Epoch timestamp seconds when the ingestion was last completed',
unit: 'seconds',
description: 'Epoch timestamp when the ingestion was last completed',
unit: 's',
},
);
}