mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 00:56:17 +02:00
18 lines
492 B
C#
18 lines
492 B
C#
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;
|
|
}
|