-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamples.py
More file actions
72 lines (70 loc) · 2.47 KB
/
Copy pathsamples.py
File metadata and controls
72 lines (70 loc) · 2.47 KB
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
"""Ten realistic MSP support tickets for demo mode."""
SAMPLE_TICKETS = [
# Networking
(
"the internet is down again for the whole office and nobody can do"
" anything. we have a client call in 20 minutes and we cant even"
" get to our email. please fix ASAP"
),
(
"remote user karen says the vpn keeps disconnecting every few"
" minutes. she is working from home and losing connection to the"
" shared drive. this has been going on since yesterday morning"
),
# Cloud Infrastructure
(
"our aws thing stopped working and the client presentation is in"
" 2 hours. i think its the database or something, the website just"
" shows an error page now. revenue is being affected"
),
(
"the azure virtual machine for the accounting team is super slow"
" today. quickbooks keeps freezing and they cant process invoices."
" it was fine last week"
),
# Security
(
"john got an email saying his password was changed but he didnt"
" change it. now he cant log into anything and there are emails"
" in his sent folder he didnt write. this looks really bad"
),
(
"we got a popup on three computers saying all our files are"
" encrypted and we need to pay bitcoin to get them back. nobody"
" touch anything. the whole sales team is affected"
),
# Endpoint
(
"laptop wont turn on and sarah has a meeting in 30 mins. she"
" tried charging it overnight but the light doesnt come on."
" its a dell latitude, maybe 2 years old"
),
(
"the main office printer is jammed again and printing blank"
" pages when it does work. we have 200 invoices to print by"
" end of day. model is HP LaserJet Pro in the copy room"
),
# Identity
(
"new employee starts monday and needs access to everything."
" sharepoint, teams, the shared drive, and quickbooks. her name"
" is lisa martinez, she is joining the finance department"
),
(
"im locked out of my account again and the MFA code on my"
" phone isnt working. i have tried like 10 times. i need to"
" submit payroll by noon today or people dont get paid"
),
]
SAMPLE_LABELS = [
"Networking",
"Networking",
"Cloud Infrastructure",
"Cloud Infrastructure",
"Security",
"Security",
"Endpoint",
"Endpoint",
"Identity",
"Identity",
]