kosmos-specs/specs/mitaka/sysarch/sysarch-diagram-status-checker.dot
Graham Hayes 4ee173564f Proposed Service Architecture for Kosmos
Also including the old massive overview .dot file,
its not referenced, but it might be handy in the future.

Change-Id: I68dc4521afe4efb520748fbc323867a045a2eb77
2015-10-06 19:27:19 +01:00

35 lines
1018 B
Plaintext

digraph "Kosmos"{
rankdir=TB
node [ fontname="sans-serif"fontsize=10 ];
edge [ fontname="sans-serif"fontsize=10 ];
label="kosmos-status-checker";
overlap="ortho";
fontname="sans-serif"
newrank=true
subgraph cluster_status_checks {
fontname="sans-serif"
fontsize=12
label="kosmos-status-checker";
Worker[label="Status Checking Worker"];
node[shape=record];
Checks[label="<f0> Build In Checks Interface |<f1> GSLB Plugin Checks Interface"];
BuiltInChecks[label="Built In Status Checks"]
PluginChecks[label="Plugin Status Checks", shape="component"]
}
Endpoints [style="invisible"]
Engine [style="invisible"]
Worker -> Engine [label="kosmos-engine"];
Worker -> Checks [dir="both"];
Checks:f0 -> BuiltInChecks [dir="both"];
Checks:f1 -> PluginChecks [dir="both"];
BuiltInChecks -> Endpoints [dir="both" label="Endpoints"];
PluginChecks -> Endpoints [dir="both" label="Endpoints"];
}