diff --git a/indexer/services/roundtable/src/tasks/update-affiliate-info.ts b/indexer/services/roundtable/src/tasks/update-affiliate-info.ts index 929d1a3c353..e3546eeec9e 100644 --- a/indexer/services/roundtable/src/tasks/update-affiliate-info.ts +++ b/indexer/services/roundtable/src/tasks/update-affiliate-info.ts @@ -42,6 +42,7 @@ export default async function runTask(): Promise { stats.gauge( `${config.SERVICE_NAME}.persistent_cache_${PersistentCacheKeys.AFFILIATE_INFO_UPDATE_TIME}_lag_seconds`, DateTime.utc().diff(windowStartTime).as('seconds'), + { cache: PersistentCacheKeys.AFFILIATE_INFO_UPDATE_TIME }, ); let windowEndTime = DateTime.fromISO(latestBlock.time); diff --git a/indexer/services/roundtable/src/tasks/update-wallet-total-volume.ts b/indexer/services/roundtable/src/tasks/update-wallet-total-volume.ts index 4cf52c41030..0286f1ef8f0 100644 --- a/indexer/services/roundtable/src/tasks/update-wallet-total-volume.ts +++ b/indexer/services/roundtable/src/tasks/update-wallet-total-volume.ts @@ -45,6 +45,7 @@ export default async function runTask(): Promise { stats.gauge( `${config.SERVICE_NAME}.persistent_cache_${PersistentCacheKeys.TOTAL_VOLUME_UPDATE_TIME}_lag_seconds`, DateTime.utc().diff(windowStartTime).as('seconds'), + { cache: PersistentCacheKeys.TOTAL_VOLUME_UPDATE_TIME }, ); let windowEndTime = DateTime.fromISO(latestBlock.time);