Skip to content

Instantly share code, notes, and snippets.

@bobmcwhirter
Created December 1, 2009 13:50
Show Gist options
  • Save bobmcwhirter/246288 to your computer and use it in GitHub Desktop.
Save bobmcwhirter/246288 to your computer and use it in GitHub Desktop.
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