2023-08-10 11:58:50 +00:00
|
|
|
|
namespace Logging
|
|
|
|
|
{
|
|
|
|
|
public class ApplicationIds
|
|
|
|
|
{
|
2023-08-13 08:07:47 +00:00
|
|
|
|
public ApplicationIds(string codexId, string gethId, string prometheusId, string codexContractsId, string grafanaId)
|
2023-08-10 11:58:50 +00:00
|
|
|
|
{
|
|
|
|
|
CodexId = codexId;
|
|
|
|
|
GethId = gethId;
|
|
|
|
|
PrometheusId = prometheusId;
|
|
|
|
|
CodexContractsId = codexContractsId;
|
2023-08-13 08:07:47 +00:00
|
|
|
|
GrafanaId = grafanaId;
|
2023-08-10 11:58:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string CodexId { get; }
|
|
|
|
|
public string GethId { get; }
|
|
|
|
|
public string PrometheusId { get; }
|
|
|
|
|
public string CodexContractsId { get; }
|
2023-08-13 08:07:47 +00:00
|
|
|
|
public string GrafanaId { get; }
|
2023-08-10 11:58:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|