-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathflip_alerts_enabled.py
executable file
·69 lines (54 loc) · 1.53 KB
/
flip_alerts_enabled.py
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
#!/usr/bin/env python
#
# This script shows how to use the update_alert() call to modify the
# details of an existing alert.
#
#
import getopt
import sys
from sdcclient import SdcClient
#
# Parse arguments
#
def usage():
print(('usage: %s [-a|--alert <name>] <sysdig-token>' % sys.argv[0]))
print('-a|--alert: Comma seperated list of alerts')
print('You can find your token at https://app.sysdigcloud.com/#/settings/user')
sys.exit(1)
try:
opts, args = getopt.getopt(sys.argv[1:], "a:", ["alert="])
except getopt.GetoptError:
usage()
alert_list = "95% CPU"
for opt, arg in opts:
if opt in ("-a", "--alert"):
alert_list = arg
if len(args) != 1:
usage()
sdc_token = args[0]
#
# Instantiate the SDC client
#
sdclient = SdcClient(sdc_token)
ok, res = sdclient.get_alerts()
if not ok:
print(res)
sys.exit(1)
alert_found = False
for alert in res['alerts']:
if alert['name'] in alert_list:
alert_found = True
print(("Updating \'" + alert['name'] + "\'. Enabled status before change:"))
print((alert['enabled']))
alert['enabled'] = not alert['enabled']
ok, res_update = sdclient.update_alert(alert)
if not ok:
print(res_update)
sys.exit(1)
# Validate and print the results
print('Alert status after modification:')
print((alert['enabled']))
print(' ')
if not alert_found:
print('Alert to be updated not found')
sys.exit(1)