Diagram as Code with D2!

Nick Schmidt
3 min readMar 5, 2023

--

Documentation is always important, but always takes too much time

Ever had an issue where a new installation is completed, but there’s just no time to update the ol’ Visio diagrams?

Manually composed diagrams always possess a certain art to them, but the hours per unit of documentation isn’t always worthwhile (particularly when prototyping a solution).

Deploying Infrastructure-As-Code should involve deployment of a mature, production-ready implementation; subjecting a coded prototype to rigorous and comprehensive testing prior to release contributes directly to end-to-end reliability. Infrastructure consumers demand ever-increasing improvements to reliability and features — mostly because they are being subjected to higher standards as well — which will require some changes to how infrastructure is delivered.

Some of these changes are positive! The inevitable result of this shift is the elimination of artisanal, hand-crafted infrastructure customized to perfection for customers, trading for a consistent, predictable infrastructure.

Consistent infrastructure without documentation, however, will confuse and deter aspirant consumers — confidence is key. I’d propose that we ought to explore completely automated ways of generated documentation in IT, and network/infrastructure diagrams are no exception.

D2

Let’s test out a new diagramming tool — D2. Here’s a summary of the features it provides:

  • Installable via the Go package manager
  • Supports server-side rendering
  • Configurable Color Theming
  • Object Grouping (hierarchical)
  • SVG Export (no more setting and calculating your own canvas size!)
  • Intuitive connectors
  • Preview plugin for Visual Studio Code
  • Language API support
  • Custom object types (icons must be accessible via HTTP from the diagram server)

Deploying the tool

Installation instructions for D2 are listed in their GitHub repository — this is probably the easiest way to execute the installation:

Go’s built-in package manager is in charge of the installation at this point, and the platform installs cleanly on Windows and Linux.

Drawing Diagrams

Let’s start with a simple diagram:

Visual Studio Code can provide a preview of this diagram in either Markdown or as a .d2 file, but GitHub-flavored markdown won't render it. This is still super useful, and seems to handle special characters really well. Let's try to render it:

This will produce an SVG:

D2 is extremely fast at rendering vector graphics, but it can support PNG and PDF output as well. The CLI interpreter detects the file output settings from the extension:

It’s slower, and consumes more bandwidth to draw PNG — vector graphics are extremely efficient, particularly with diagrams. We can apply themes as well:

Custom themes are also supported.

Adding Icons

D2 supports usage of icons, but they have to be accessible via HTTP. Terrastruct provides an Icons Library to help out — and custom stencils would have to be stored somewhere for rendering (either as SVG or PNG).

Let’s try drawing a diagram with icons:

Here, we introduced several new constructs. D2’s language is very intuitive, with clear inferences from JSON and YAML — and we use key-value pairs to identify what we should draw. D2 supports hierarchical nesting as well. On the third section, we added a “connector” by using the -> directive between the two named objects:

It’s also possible to attach object attributes by misusing the class shape type:

This tool has tremendous illustrative potential when built with automation. Let’s imagine a server-side workflow that could integrate rendering of an object as part of the CI workflow.

Actually, instead of imagining it, let’s try diagramming it instead:

D2 proves to be an excellent method of automatically generating diagrams. The diagram above is automatically positioned, so it won’t have the “polish” that a manually generated diagram would have, but it also takes a fraction of the effort. This is a game-changing tool; engineers should use this tool to generate and render solution documentation on-every IaC update, and then rely on manual documentation for higher-value work like executive presentations or sales pitches.

For the rest of the use cases, let’s save time by automating work where that artisanal, curated experience doesn’t help us. In future posts we’ll examine ways to document infrastructure.

Originally published at https://blog.engyak.co on March 5, 2023.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Nick Schmidt
Nick Schmidt

Written by Nick Schmidt

I am a network engineer based out of Alaska, pursuing various methods of achieving SRE/NRE

No responses yet

Write a response