-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_db.py
116 lines (112 loc) · 2.77 KB
/
init_db.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
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
from pymongo import MongoClient
from datetime import datetime
from dotenv import load_dotenv
import os
services_dummy_data = [
{
'name': 'dns-service',
'host': {
'type': 'ip',
'value': '1.1.1.1'
},
'port': '53',
'proto': 'udp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
},
{
'name': 'wrong-hostname',
'host': {
'type': 'hostname',
'value': 'xxx.local.sdsdsd'
},
'port': '123',
'proto': 'udp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
},
{
'name': 'home-ssh-service',
'host': {
'type': 'ip',
'value': '192.168.1.1'
},
'port': '22',
'proto': 'tcp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
},
{
'name': 'home-ntp-service',
'host': {
'type': 'ip',
'value': '192.168.1.1'
},
'port': '123',
'proto': 'tcp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
},
{
'name': 'localhost-nmea-service',
'host': {
'type': 'ip',
'value': '172.16.1.126'
},
'port': '10110',
'proto': 'tcp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
},
{
'name': 'dns-google',
'host': {
'type': 'hostname',
'value': 'google-public-dns-b.google.com'
},
'port': '53',
'proto': 'tcp',
'timestamps': {
'last_responded': None,
'last_tested': None,
'created': datetime.utcnow(),
'edited': datetime.utcnow()
},
'status': 'up'
}
]
# Load environment vars
load_dotenv('.env-watchdog')
mongodb_url = os.getenv("MONGODB_URL")
with MongoClient(mongodb_url) as client:
# Use 'watchdogdb' db
db = client.watchdogdb
service = db.service
# Drop collection if exists
service.drop()
service.insert_many(services_dummy_data)