forked from cas-packone/ambari-impala-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alerts.json
86 lines (86 loc) · 2.4 KB
/
alerts.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"IMPALA": {
"service": [],
"IMPALA_CATALOG_SERVICE": [
{
"name": "impala_catalog_process",
"label": "impala catalog Process",
"description": "This host-level alert is triggered if the impala catalog cannot be determined to be up.",
"interval": 1,
"scope": "HOST",
"source": {
"type": "PORT",
"uri": "25020",
"default_port": 25020,
"reporting": {
"ok": {
"text": "TCP OK - {0:.3f}s response on port {1}"
},
"warning": {
"text": "TCP OK - {0:.3f}s response on port {1}",
"value": 1.5
},
"critical": {
"text": "Connection failed: {0} to {1}:{2}",
"value": 5.0
}
}
}
}
],
"IMPALA_STATE_STORE": [
{
"name": "impala_state_store_process",
"label": "impala state store Process",
"description": "This host-level alert is triggered if the impala state store cannot be determined to be up.",
"interval": 1,
"scope": "HOST",
"source": {
"type": "PORT",
"uri": "24000",
"default_port": 24000,
"reporting": {
"ok": {
"text": "TCP OK - {0:.3f}s response on port {1}"
},
"warning": {
"text": "TCP OK - {0:.3f}s response on port {1}",
"value": 1.5
},
"critical": {
"text": "Connection failed: {0} to {1}:{2}",
"value": 5.0
}
}
}
}
],
"IMPALA_DAEMON": [
{
"name": "impala_daemon_process",
"label": "impala daemon Process",
"description": "This host-level alert is triggered if the impala daemon cannot be determined to be up.",
"interval": 1,
"scope": "HOST",
"source": {
"type": "PORT",
"uri": "22000",
"default_port": 22000,
"reporting": {
"ok": {
"text": "TCP OK - {0:.3f}s response on port {1}"
},
"warning": {
"text": "TCP OK - {0:.3f}s response on port {1}",
"value": 1.5
},
"critical": {
"text": "Connection failed: {0} to {1}:{2}",
"value": 5.0
}
}
}
}
]
}
}