log-viewer/emitter/emitter.py
rakbaal b90ae0c18d
All checks were successful
continuous-integration/drone Build is passing
Add emitter and missing mongo-init.sh
2022-02-14 11:59:21 +02:00

13 lines
427 B
Python

from pymongo import MongoClient
from bson.objectid import ObjectId
from time import sleep
MONGO_URI="mongodb://127.0.0.1:27017/default"
db = MongoClient(MONGO_URI).get_default_database()
while True:
db.eventlog.insert_one({ "timestamp": "...", "event": "motion-detected", "started": "...", "finished": "...", "component": "motion-detect", "camera": "Server room", "action": "event",
})
sleep(1)