Created
December 1, 2009 13:50
-
-
Save bobmcwhirter/246288 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph instance_states { | |
rankdir=LR; | |
start | |
[ | |
label="Start", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
color="#449944", | |
fillcolor="#88DD88", | |
style="filled", | |
shape="doublecircle", | |
height=0.5 | |
] | |
stopped | |
[ | |
label="Stopped", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
shape="rect", | |
color="#999999", | |
fillcolor="#DDDDDD", | |
style="filled", | |
height=0.5 | |
] | |
pending | |
[ | |
label="Pending", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
shape="rect", | |
color="#999999", | |
fillcolor="#DDDDDD", | |
style="filled", | |
height=0.5 | |
] | |
shutting_down | |
[ | |
label="Shutting Down", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
shape="rect", | |
color="#999999", | |
fillcolor="#DDDDDD", | |
style="filled", | |
height=0.5 | |
] | |
running | |
[ | |
label="Running", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
shape="rect", | |
color="#999999", | |
fillcolor="#DDDDDD", | |
style="filled", | |
height=0.5 | |
] | |
finish | |
[ | |
label="Finish", | |
labelloc="c", | |
fontsize="12.0", | |
fontname="Liberation Sans Bold", | |
color="#994444", | |
fillcolor="#DD8888", | |
style="filled", | |
shape="doublecircle", | |
height=0.5 | |
] | |
start -> stopped | |
[ | |
label="create", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
stopped -> pending | |
[ | |
label="start", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
stopped -> finish | |
[ | |
label="destroy", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
pending -> shutting_down | |
[ | |
label="stop", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
pending -> running | |
[ | |
label="auto", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#227722", | |
fontname="Liberation Sans Bold Italic", | |
]; | |
shutting_down -> stopped | |
[ | |
label="auto", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#227722", | |
fontname="Liberation Sans Bold Italic", | |
]; | |
running -> pending | |
[ | |
label="reboot", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
running -> shutting_down | |
[ | |
label="stop", | |
fontsize="14.0", | |
penwidth="2.0", | |
labelloc="t", | |
color="#CCCCCC", | |
fontcolor="#333333", | |
fontname="Liberation Sans Bold", | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment