beagle
beagle copied to clipboard
Ability to add alerts from upload page
It's possible to inject alerts using the bindings:
from beagle.nodes import Alert, Process
nodes = transformer.run(....)
alert = Alert(...)
process = Process(...)
alert.alerted_on[process].append(...)
nodes += [alert, process]
backend.graph()
but this isn't possible when only adding via the web interface.