Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 740 Bytes

using_mermaid.md

File metadata and controls

24 lines (21 loc) · 740 Bytes

Using Mermaid

This is a flowchart made by text in a code block with mermaid label.

graph TD
    subgraph Server GNU/Linux
        SO["Plugin Memory"]-->Collectd["Agent"]
        JVM["Plugin GC"]-->Collectd
        Collectd-->PluginNetwork["Plugin Network"]
    end
    PluginNetwork-- TCP -->Server["Collectd Remote Server"];
Loading

``` mermaid
graph TD
subgraph Server GNU/Linux
SO["Plugin Memory"]-->Collectd["Agent"]
JVM["Plugin GC"]-->Collectd
Collectd-->PluginNetwork["Plugin Network"]
end
PluginNetwork-- TCP -->Server["Collectd Remote Server"];
```

If you are not seeing it, check your index.html and uncomment script block sourcing Mermaid library.