forked from Raiffeisen-DGTL/ViennaNET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CefSeverity.cs
48 lines (41 loc) · 883 Bytes
/
CefSeverity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
namespace ViennaNET.ArcSight
{
/// <summary>
/// Уровень критичности сообщения в ArcSight
/// </summary>
public enum CefSeverity
{
/// <summary>
/// System is unusable
/// </summary>
Emergency = 10,
/// <summary>
/// Action must be taken immediately
/// </summary>
Alert = 9,
/// <summary>
/// Critical conditions
/// </summary>
Critical = 8,
/// <summary>
/// Error conditions
/// </summary>
Error = 7,
/// <summary>
/// Warning conditions
/// </summary>
Warning = 6,
/// <summary>
/// Normal but significant condition
/// </summary>
Notice = 5,
/// <summary>
/// Informational messages
/// </summary>
Informational = 4,
/// <summary>
/// Debug-level messages
/// </summary>
Debug = 3
}
}