beagle icon indicating copy to clipboard operation
beagle copied to clipboard

Ability to add alerts from upload page

Open yampelo opened this issue 6 years ago • 0 comments

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.

yampelo avatar Apr 05 '19 12:04 yampelo