use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class SimulatorTopology method main.
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new SimulatorTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class OFEventWFMTopology method main.
/*
* Progress Tracker - Phase 2: Speaker / TPE Integration; Cache Coherency Checks; Flapping
* (1) ◊ - Interact with Speaker (network element is / isn't there)
* (2) ◊ - Interact with TPE (graph element is / isn't there)
* (3) ◊ - Validate the Topology periodically - switches, ports, links
* - health checks should validate the known universe; what about missing stuff?
* (4) ◊ - See if flapping happens .. define window and if there are greater than 4 up/downs?
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new OFEventWFMTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class FlowTopology method main.
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new FlowTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class IslStatsTopology method main.
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new IslStatsTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class KafkaLoggerTopology method main.
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new KafkaLoggerTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
Aggregations