Add dashboard

This commit is contained in:
Stone_Red
2026-01-05 17:24:46 +01:00
parent dee9f92277
commit ffc79d3c27
14 changed files with 627 additions and 0 deletions
@@ -0,0 +1,17 @@
namespace RemoteExec.Dashboard.Configuration;
/// <summary>
/// Configuration for the dashboard.
/// </summary>
public class DashboardConfiguration
{
/// <summary>
/// Gets or sets the list of servers to monitor.
/// </summary>
public List<ServerConfiguration> Servers { get; set; } = [];
/// <summary>
/// Gets or sets the maximum number of metrics history entries to keep per server.
/// </summary>
public int MaxMetricsHistoryCount { get; set; } = 100;
}