mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 09:06:20 +02:00
Add dashboard
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user