Victoria: [ BUG ] Stats event doesn't fire


Describe the bug/issue.

[18:41:56 DBG] {"playingPlayers":0,"op":"stats","memory":{"reservable":8573157376,"used":32857352,"free":271229688,"allocated":304087040},"players":0,"cpu":{"cores":16,"systemLoad":0,"lavalinkLoad":0.0684084030621328},"uptime":11861}

The stats event is definitely sent by lavalink but the onstatsevent is never fired by victoria. So smth is breaking there.

 private Task OnStatsReceived(StatsEventArgs e)
        {
            _log.LogTrace("Received Stats from LavaLink");
            _audioStatsService.SetStats(e);
            return Task.CompletedTask;
        }

This event is never triggered.

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Comments: 15 (8 by maintainers)

Most upvoted comments

Just wanted to let you know that whatever you did seems to have fixed the issue with the missing stats 😄