Skip to content

Dependency Map Example

This example was generated through the same Markdown renderer used by entroping map --export md, after seeding local .entroping/state.db with redacted traffic records. It demonstrates the public shape without committing local runtime state or generated reports/ artifacts.

Curated PNG: dependency-map-screenshot.png

# Entroping Dependency Map

| Host | Method | Path | Calls | Failures | Min ms | Avg ms | Max ms |
| --- | --- | --- | ---: | ---: | ---: | ---: | ---: |
| api.example.test | POST | /checkout | 1 | 0 | 38 | 38 | 38 |
| payments.example.test | GET | /payments/chk_1234567890abcdef | 1 | 0 | 44 | 44 | 44 |
| api.example.test | GET | /health | 1 | 0 | 8 | 8 | 8 |
flowchart LR
  source["client"]
  host_1["api.example.test"]
  source -->|POST /checkout calls=1 failures=0 38ms avg| host_1
  host_2["payments.example.test"]
  source -->|GET /payments/chk_1234567890abcdef calls=1 failures=0 44ms avg| host_2
  host_3["api.example.test"]
  source -->|GET /health calls=1 failures=0 8ms avg| host_3

Rebuild Screenshot Source

When Graphviz is installed, capture a PNG from a real local traffic state:

entroping map --export png
open reports/dependency-map.png

Keep raw generated PNGs out of Git unless the artifact is intentionally curated and size-checked for a launch post.