Collect webhook cache statistics
This commit is contained in:
parent
3103df856c
commit
2620d2da9c
@ -13,7 +13,6 @@ namespace PluralKit.Bot
|
|||||||
public static GaugeOptions MembersOnline => new GaugeOptions {Name = "Members online", MeasurementUnit = Unit.None, Context = "Bot"};
|
public static GaugeOptions MembersOnline => new GaugeOptions {Name = "Members online", MeasurementUnit = Unit.None, Context = "Bot"};
|
||||||
public static GaugeOptions Guilds => new GaugeOptions {Name = "Guilds", MeasurementUnit = Unit.None, Context = "Bot"};
|
public static GaugeOptions Guilds => new GaugeOptions {Name = "Guilds", MeasurementUnit = Unit.None, Context = "Bot"};
|
||||||
public static GaugeOptions Channels => new GaugeOptions {Name = "Channels", MeasurementUnit = Unit.None, Context = "Bot"};
|
public static GaugeOptions Channels => new GaugeOptions {Name = "Channels", MeasurementUnit = Unit.None, Context = "Bot"};
|
||||||
|
public static GaugeOptions WebhookCacheSize => new GaugeOptions { Name = "Webhook Cache Size", Context = "Bot" };
|
||||||
public static GaugeOptions DatabasePoolSize => new GaugeOptions { Name = "Database pool size", Context = "Database" };
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -22,9 +22,11 @@ namespace PluralKit.Bot
|
|||||||
private SwitchStore _switches;
|
private SwitchStore _switches;
|
||||||
private MessageStore _messages;
|
private MessageStore _messages;
|
||||||
|
|
||||||
|
private WebhookCacheService _webhookCache;
|
||||||
|
|
||||||
private ILogger _logger;
|
private ILogger _logger;
|
||||||
|
|
||||||
public PeriodicStatCollector(IDiscordClient client, IMetrics metrics, SystemStore systems, MemberStore members, SwitchStore switches, MessageStore messages, ILogger logger)
|
public PeriodicStatCollector(IDiscordClient client, IMetrics metrics, SystemStore systems, MemberStore members, SwitchStore switches, MessageStore messages, ILogger logger, WebhookCacheService webhookCache)
|
||||||
{
|
{
|
||||||
_client = (DiscordShardedClient) client;
|
_client = (DiscordShardedClient) client;
|
||||||
_metrics = metrics;
|
_metrics = metrics;
|
||||||
@ -32,6 +34,7 @@ namespace PluralKit.Bot
|
|||||||
_members = members;
|
_members = members;
|
||||||
_switches = switches;
|
_switches = switches;
|
||||||
_messages = messages;
|
_messages = messages;
|
||||||
|
_webhookCache = webhookCache;
|
||||||
_logger = logger.ForContext<PeriodicStatCollector>();
|
_logger = logger.ForContext<PeriodicStatCollector>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,6 +74,9 @@ namespace PluralKit.Bot
|
|||||||
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessThreads, process.Threads.Count);
|
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessThreads, process.Threads.Count);
|
||||||
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessHandles, process.HandleCount);
|
_metrics.Measure.Gauge.SetValue(CoreMetrics.ProcessHandles, process.HandleCount);
|
||||||
_metrics.Measure.Gauge.SetValue(CoreMetrics.CpuUsage, await EstimateCpuUsage());
|
_metrics.Measure.Gauge.SetValue(CoreMetrics.CpuUsage, await EstimateCpuUsage());
|
||||||
|
|
||||||
|
// Other shiz
|
||||||
|
_metrics.Measure.Gauge.SetValue(BotMetrics.WebhookCacheSize, _webhookCache.CacheSize);
|
||||||
|
|
||||||
stopwatch.Stop();
|
stopwatch.Stop();
|
||||||
_logger.Information("Updated metrics in {Time}", stopwatch.ElapsedDuration());
|
_logger.Information("Updated metrics in {Time}", stopwatch.ElapsedDuration());
|
||||||
|
@ -54,5 +54,7 @@ namespace PluralKit.Bot
|
|||||||
|
|
||||||
private async Task<IWebhook> DoCreateWebhook(ITextChannel channel) => await channel.CreateWebhookAsync(WebhookName);
|
private async Task<IWebhook> DoCreateWebhook(ITextChannel channel) => await channel.CreateWebhookAsync(WebhookName);
|
||||||
private bool IsWebhookMine(IWebhook arg) => arg.Creator.Id == _client.CurrentUser.Id && arg.Name == WebhookName;
|
private bool IsWebhookMine(IWebhook arg) => arg.Creator.Id == _client.CurrentUser.Id && arg.Name == WebhookName;
|
||||||
|
|
||||||
|
public int CacheSize => _webhooks.Count;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user