PluralKit/PluralKit.Bot/Services/CpuStatService.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2019-12-22 11:50:47 +00:00
using System.Diagnostics;
using Serilog;
namespace PluralKit.Bot;
public class CpuStatService
2019-12-22 11:50:47 +00:00
{
private readonly ILogger _logger;
2021-08-27 15:03:47 +00:00
public CpuStatService(ILogger logger)
{
_logger = logger;
}
2019-12-22 11:50:47 +00:00
public double LastCpuMeasure { get; private set; }
2019-12-22 11:50:47 +00:00
/// <summary>
/// Gets the current CPU usage. Estimation takes ~5 seconds (of mostly sleeping).
/// </summary>
public async Task<double> EstimateCpuUsage()
{
// We get the current processor time, wait 5 seconds, then compare
// https://medium.com/@jackwild/getting-cpu-usage-in-net-core-7ef825831b8b
2021-08-27 15:03:47 +00:00
_logger.Debug("Estimating CPU usage...");
var stopwatch = new Stopwatch();
2021-08-27 15:03:47 +00:00
stopwatch.Start();
var cpuTimeBefore = Process.GetCurrentProcess().TotalProcessorTime;
2021-08-27 15:03:47 +00:00
await Task.Delay(5000);
2021-08-27 15:03:47 +00:00
stopwatch.Stop();
var cpuTimeAfter = Process.GetCurrentProcess().TotalProcessorTime;
2019-12-22 11:50:47 +00:00
var cpuTimePassed = cpuTimeAfter - cpuTimeBefore;
var timePassed = stopwatch.Elapsed;
2019-12-22 11:50:47 +00:00
var percent = cpuTimePassed / timePassed;
_logger.Debug("CPU usage measured as {Percent:P}", percent);
LastCpuMeasure = percent;
return percent;
2019-12-22 11:50:47 +00:00
}
}