initial upload
This commit is contained in:
parent
a0aa9cc28e
commit
f857f43df4
553 changed files with 46169 additions and 13 deletions
27
src/Server/Insight.Server/Models/MonitorMessage.cs
Normal file
27
src/Server/Insight.Server/Models/MonitorMessage.cs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
using Insight.Agent.Enums;
|
||||
|
||||
namespace Insight.Server.Models
|
||||
{
|
||||
internal class MonitorMessage
|
||||
{
|
||||
public DateTime? Timestamp { get; set; }
|
||||
public string? Community { get; set; }
|
||||
public ApplicationEnum? Application { get; set; }
|
||||
public CategoryEnum? Category { get; set; }
|
||||
public StatusEnum? Status { get; set; }
|
||||
public string? Endpoint { get; set; }
|
||||
public string? Hostname { get; set; }
|
||||
public string? Subject { get; set; }
|
||||
public string? Message { get; set; }
|
||||
|
||||
public enum ApplicationEnum
|
||||
{
|
||||
Unknown = 0,
|
||||
Insight = 1,
|
||||
Acronis = 2,
|
||||
Veeam = 3,
|
||||
QNAP = 4,
|
||||
FreeNas = 5
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue