-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsend-alert.sh
executable file
·152 lines (149 loc) · 3.43 KB
/
send-alert.sh
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/bin/bash
CLUSTER_NAME="$(kubectl config current-context)"
CLUSTER_NUM="$(echo "${CLUSTER_NAME}" | cut -c8-9)"
ALERTMANAGER_URL="https://alertmanager-${CLUSTER_NUM}.haas-420.pez.pivotal.io"
firing_alerts='[
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example1"
},
"annotations": {
"info": "The disk sda1 is running full",
"summary": "please check the instance example1"
}
},
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sda2",
"instance": "example1"
},
"annotations": {
"info": "The disk sda2 is running full",
"summary": "please check the instance example1",
"runbook": "the following link http://test-url should be clickable"
}
},
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example2"
},
"annotations": {
"info": "The disk sda1 is running full",
"summary": "please check the instance example2"
}
},
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sdb2",
"instance": "example2"
},
"annotations": {
"info": "The disk sdb2 is running full",
"summary": "please check the instance example2"
}
},
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example3",
"severity": "critical"
}
},
{
"status": "firing",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example3",
"severity": "warning"
}
}
]'
echo ""
curl -XPOST -d"$firing_alerts" -k "$ALERTMANAGER_URL/api/v1/alerts"
echo ""
resolved_alerts='[
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example1"
},
"annotations": {
"info": "The disk sda1 is running full",
"summary": "please check the instance example1"
}
},
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sda2",
"instance": "example1"
},
"annotations": {
"info": "The disk sda2 is running full",
"summary": "please check the instance example1",
"runbook": "the following link http://test-url should be clickable"
}
},
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example2"
},
"annotations": {
"info": "The disk sda1 is running full",
"summary": "please check the instance example2"
}
},
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sdb2",
"instance": "example2"
},
"annotations": {
"info": "The disk sdb2 is running full",
"summary": "please check the instance example2"
}
},
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example3",
"severity": "critical"
}
},
{
"status": "resolved",
"labels": {
"alertname": "TestAlert",
"dev": "sda1",
"instance": "example3",
"severity": "warning"
}
}
]'
echo -n "Press enter to resolve 'TestAlert'"
read -r
curl -XPOST -d"$resolved_alerts" -k "$ALERTMANAGER_URL/api/v1/alerts"
echo ""