PluralKit/PluralKit.Bot/Services/PeriodicStatCollector.cs

95 lines
3.7 KiB
C#
Raw Normal View History

2019-07-18 15:13:42 +00:00
using System.Diagnostics;
2019-07-16 21:34:22 +00:00
using System.Threading.Tasks;
using App.Metrics;
2020-06-13 17:15:29 +00:00
using Dapper;
2021-01-31 13:59:45 +00:00
using Myriad.Cache;
using Myriad.Types;
2019-07-18 15:13:42 +00:00
using NodaTime.Extensions;
2019-07-16 21:34:22 +00:00
using PluralKit.Core;
2019-07-18 15:13:42 +00:00
using Serilog;
2019-07-16 21:34:22 +00:00
namespace PluralKit.Bot
{
public class PeriodicStatCollector
{
2020-08-29 11:46:27 +00:00
private readonly IMetrics _metrics;
2021-01-31 13:59:45 +00:00
private readonly IDiscordCache _cache;
2020-08-29 11:46:27 +00:00
private readonly CpuStatService _cpu;
2019-07-16 21:34:22 +00:00
private readonly ModelRepository _repo;
2019-07-16 21:34:22 +00:00
2020-08-29 11:46:27 +00:00
private readonly WebhookCacheService _webhookCache;
2019-07-21 02:15:47 +00:00
2020-08-29 11:46:27 +00:00
private readonly DbConnectionCountHolder _countHolder;
2019-08-11 20:56:20 +00:00
2020-08-29 11:46:27 +00:00
private readonly ILogger _logger;
2019-07-18 15:13:42 +00:00
public PeriodicStatCollector(IMetrics metrics, ILogger logger, WebhookCacheService webhookCache, DbConnectionCountHolder countHolder, CpuStatService cpu, ModelRepository repo, IDiscordCache cache)
2019-07-16 21:34:22 +00:00
{
_metrics = metrics;
2019-07-21 02:15:47 +00:00
_webhookCache = webhookCache;
2019-08-11 20:56:20 +00:00
_countHolder = countHolder;
2019-12-22 11:50:47 +00:00
_cpu = cpu;
_repo = repo;
2021-01-31 13:59:45 +00:00
_cache = cache;
2019-07-18 15:13:42 +00:00
_logger = logger.ForContext<PeriodicStatCollector>();
2019-07-16 21:34:22 +00:00
}
public async Task CollectStats()
{
2019-07-18 15:13:42 +00:00
var stopwatch = new Stopwatch();
stopwatch.Start();
2021-08-27 15:03:47 +00:00
2019-07-16 21:34:22 +00:00
// Aggregate guild/channel stats
var guildCount = 0;
var channelCount = 0;
2021-08-27 15:03:47 +00:00
// No LINQ today, sorry
2021-01-31 13:59:45 +00:00
await foreach (var guild in _cache.GetAllGuilds())
{
2021-01-31 13:59:45 +00:00
guildCount++;
foreach (var channel in _cache.GetGuildChannels(guild.Id))
{
if (DiscordUtils.IsValidGuildChannel(channel))
channelCount++;
2021-01-31 13:59:45 +00:00
}
}
2021-08-27 15:03:47 +00:00
_metrics.Measure.Gauge.SetValue(BotMetrics.Guilds, guildCount);
_metrics.Measure.Gauge.SetValue(BotMetrics.Channels, channelCount);
2021-08-27 15:03:47 +00:00
2019-07-16 21:34:22 +00:00
// Aggregate DB stats
// just fetching from database here - actual updating of the data is done in PluralKit.ScheduledTasks
// if you're not running ScheduledTasks and want up-to-date counts, uncomment the following line:
// await _repo.UpdateStats();
var counts = await _repo.GetStats();
_metrics.Measure.Gauge.SetValue(CoreMetrics.SystemCount, counts.SystemCount);
_metrics.Measure.Gauge.SetValue(CoreMetrics.MemberCount, counts.MemberCount);
_metrics.Measure.Gauge.SetValue(CoreMetrics.GroupCount, counts.GroupCount);
_metrics.Measure.Gauge.SetValue(CoreMetrics.SwitchCount, counts.SwitchCount);
_metrics.Measure.Gauge.SetValue(CoreMetrics.MessageCount, counts.MessageCount);
2021-08-27 15:03:47 +00:00
// Process info
var process = Process.GetCurrentProcess();
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessPhysicalMemory, process.WorkingSet64);
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessVirtualMemory, process.VirtualMemorySize64);
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessPrivateMemory, process.PrivateMemorySize64);
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessThreads, process.Threads.Count);
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessHandles, process.HandleCount);
2019-12-22 11:50:47 +00:00
_metrics.Measure.Gauge.SetValue(CoreMetrics.CpuUsage, await _cpu.EstimateCpuUsage());
2021-08-27 15:03:47 +00:00
2019-08-11 20:56:20 +00:00
// Database info
_metrics.Measure.Gauge.SetValue(CoreMetrics.DatabaseConnections, _countHolder.ConnectionCount);
2021-08-27 15:03:47 +00:00
2019-07-21 02:15:47 +00:00
// Other shiz
_metrics.Measure.Gauge.SetValue(BotMetrics.WebhookCacheSize, _webhookCache.CacheSize);
2019-07-18 15:13:42 +00:00
stopwatch.Stop();
_logger.Debug("Updated metrics in {Time}", stopwatch.ElapsedDuration());
2019-07-16 21:34:22 +00:00
}
}
}