-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmetrics-updater.service.ts
47 lines (41 loc) · 1.26 KB
/
metrics-updater.service.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { Inject, Injectable } from '@nestjs/common'
import { SchedulerRegistry } from '@nestjs/schedule'
import { METRICS_INTERVAL } from '..'
import { UnleashMetricsClient } from '../../unleash-client'
import { MetricsRepository } from '../repository/metrics-repository'
import { BaseUpdater } from './base-updater'
@Injectable()
export class MetricsUpdaterService extends BaseUpdater {
lastUpdated = new Date()
constructor(
@Inject(METRICS_INTERVAL) protected readonly interval: number,
protected readonly scheduler: SchedulerRegistry,
private readonly metrics: MetricsRepository,
private readonly metricsClient: UnleashMetricsClient,
) {
super()
}
async update(): Promise<void> {
const metrics = this.metrics.findAll()
if (metrics.length === 0) {
return
}
try {
await this.metricsClient.sendMetrics({
bucket: {
start: this.lastUpdated.toISOString(),
stop: new Date().toISOString(),
toggles: Object.fromEntries(
metrics.map((metric) => [
metric.id,
{ yes: metric.yes, no: metric.no },
]),
),
},
})
this.metrics.flushAll()
} catch (error) {
this.logger.warn((error as Error).message)
}
}
}