<stackstate_url:7070>/#/analytics
. The analytical environment is a full-fledged scripting environment.//Define a name for the component where we start the search. def selectedComponent = "Invoicing"
Topology.query("name = '" + selectedComponent + "'")
Define a name for the component where we start the search. def selectedComponent = "srv02"
Topology.query("withNeighborsOf(direction = 'down', levels = '15', components = (name = '" + selectedComponent + "')) and healthState = 'CRITICAL'")
//Define a name for the component where we start the search. def selectedComponent = "Payment_Service"
//Define a search depth
def N = 3
Topology.query("withNeighborsOf(direction = 'down', components = (name = '" + selectedComponent + "'), levels = '" + N + "') ")
//Define a name for the component where we start the search. def selectedComponent = "Payment_Service"
//Define a search depth
def N = 3
Topology.query("withNeighborsOf(direction = 'up', components = (name = '" + selectedComponent + "'), levels = '" + N + "') ")
Topology.query("Type = 'database'")