I need to automatically create a popout window / other in-dashboard notification when certain thresholds are broken within a table.
Thus far I have managed to configure Splunk popouts triggered by on click events as described at https://www.hurricanelabs.com/splunk-tutorials/splunk-custom-modal-view-creation-part-1-revealing-a-...
This grabs the table using:
mvc.components.get
and triggers a modal window using:
table.on("click", function(e))
What would perfect is some other functionality than "click", that instead triggers when thresholds are passed. Also open to any other suggestions on how to implement a similar functionality.
Cheers!