-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpost_event.py
executable file
·50 lines (43 loc) · 1.4 KB
/
post_event.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
#!/usr/bin/env python
#
# Post a user event to Sysdig Cloud
#
import argparse
import json
import sys
from sdcclient import SdMonitorClient
#
# Parse arguments
#
# Usage: post_event.py [-h] [-d DESCRIPTION] [-s SEVERITY] [-c SCOPE] [-t TAGS] sysdig_token name
#
parser = argparse.ArgumentParser()
parser.add_argument('-d', '--description')
parser.add_argument('-s', '--severity', help='syslog style from 0 (high) to 7 (low)')
parser.add_argument('-c', '--scope',
help='metadata, in Sysdig Cloud format, of nodes to associate with the event, '
'eg: \'host.hostName = "ip-10-1-1-1" and container.name = "foo"\'')
parser.add_argument('-t', '--tags',
help='dictionary of arbitrary key-value pairs, eg: \'{"app":"my_app", "file":"text.py"}\'')
parser.add_argument('sysdig_token', help='You can find your token at https://app.sysdigcloud.com/#/settings/user')
parser.add_argument('name')
args = parser.parse_args()
tags = None
if args.tags:
tags = json.loads(args.tags)
#
# Instantiate the SDC client
#
sdclient = SdMonitorClient(args.sysdig_token)
#
# Post the event using post_event(self, name, description=None, severity=None, event_filter=None, tags=None)
#
ok, res = sdclient.post_event(args.name, args.description, args.severity, args.scope, tags)
#
# Return the result
#
if ok:
print('Event Posted Successfully')
else:
print(res)
sys.exit(1)