mirror of https://github.com/Chocobozzz/PeerTube
22 lines
706 B
TypeScript
22 lines
706 B
TypeScript
|
import { Meter } from '@opentelemetry/api'
|
||
|
import { VideoModel } from '@server/models/video/video.js'
|
||
|
|
||
|
export class LivesObserversBuilder {
|
||
|
|
||
|
constructor (private readonly meter: Meter) {
|
||
|
|
||
|
}
|
||
|
|
||
|
buildObservers () {
|
||
|
this.meter.createObservableGauge('peertube_running_lives_total', {
|
||
|
description: 'Total running lives on the instance'
|
||
|
}).addCallback(async observableResult => {
|
||
|
const local = await VideoModel.countLives({ remote: false, mode: 'published' })
|
||
|
const remote = await VideoModel.countLives({ remote: true, mode: 'published' })
|
||
|
|
||
|
observableResult.observe(local, { liveOrigin: 'local' })
|
||
|
observableResult.observe(remote, { liveOrigin: 'remote' })
|
||
|
})
|
||
|
}
|
||
|
}
|