mirror of
https://github.com/livekit/livekit.git
synced 2026-04-01 19:35:43 +00:00
* move callbacks out of messageRouter * OCD * more OCD * fix forwarder test * even more OCD * maximum OCD * package name collision, copy lock by value
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package telemetry
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/livekit/protocol/livekit"
|
|
"github.com/livekit/protocol/logger"
|
|
|
|
"github.com/livekit/livekit-server/pkg/config"
|
|
"github.com/livekit/livekit-server/pkg/routing"
|
|
)
|
|
|
|
//go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . AnalyticsService
|
|
type AnalyticsService interface {
|
|
SendStats(ctx context.Context, stats []*livekit.AnalyticsStat)
|
|
SendEvent(ctx context.Context, events *livekit.AnalyticsEvent)
|
|
}
|
|
|
|
type analyticsService struct {
|
|
analyticsKey string
|
|
nodeID string
|
|
|
|
events livekit.AnalyticsRecorderService_IngestEventsClient
|
|
stats livekit.AnalyticsRecorderService_IngestStatsClient
|
|
}
|
|
|
|
func NewAnalyticsService(_ *config.Config, currentNode routing.LocalNode) AnalyticsService {
|
|
return &analyticsService{
|
|
analyticsKey: "", // TODO: conf.AnalyticsKey
|
|
nodeID: currentNode.Id,
|
|
}
|
|
}
|
|
|
|
func (a *analyticsService) SendStats(_ context.Context, stats []*livekit.AnalyticsStat) {
|
|
if a.stats == nil {
|
|
return
|
|
}
|
|
|
|
for _, stat := range stats {
|
|
stat.AnalyticsKey = a.analyticsKey
|
|
stat.Node = a.nodeID
|
|
}
|
|
if err := a.stats.Send(&livekit.AnalyticsStats{Stats: stats}); err != nil {
|
|
logger.Errorw("failed to send stats", err)
|
|
}
|
|
}
|
|
|
|
func (a *analyticsService) SendEvent(_ context.Context, event *livekit.AnalyticsEvent) {
|
|
if a.events == nil {
|
|
return
|
|
}
|
|
|
|
event.AnalyticsKey = a.analyticsKey
|
|
if err := a.events.Send(&livekit.AnalyticsEvents{
|
|
Events: []*livekit.AnalyticsEvent{event},
|
|
}); err != nil {
|
|
logger.Errorw("failed to send event", err, "eventType", event.Type.String())
|
|
}
|
|
}
|