mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-28 18:04:23 +00:00
Add some practical examples and pointers to additional information about using graphviz. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
9 lines
277 B
Plaintext
9 lines
277 B
Plaintext
digraph {
|
|
bgcolor=transparent; rankdir=LR;
|
|
node [shape="rectangle" style="filled" color="lightblue"]
|
|
edge [fontsize="12" fontcolor="grey"]
|
|
|
|
"acrnprobe" -> "telemetrics-client" [label="crashlog\npath"]
|
|
"telemetrics-client" -> "backend" [label="log\ncontent"]
|
|
}
|