summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/contributing/architecture.md24
1 files changed, 15 insertions, 9 deletions
diff --git a/docs/contributing/architecture.md b/docs/contributing/architecture.md
index 84d13ded2..e1416a365 100644
--- a/docs/contributing/architecture.md
+++ b/docs/contributing/architecture.md
@@ -33,15 +33,21 @@ Metrics is Deno's internal counter for various statistics.
```shell
> console.table(Deno.metrics())
-┌──────────────────┬────────┐
-│ (index) │ Values │
-├──────────────────┼────────┤
-│ opsDispatched │ 9 │
-│ opsCompleted │ 9 │
-│ bytesSentControl │ 504 │
-│ bytesSentData │ 0 │
-│ bytesReceived │ 856 │
-└──────────────────┴────────┘
+┌─────────────────────────┬───────────┐
+│ (idx) │ Values │
+├─────────────────────────┼───────────┤
+│ opsDispatched │ 9 │
+│ opsDispatchedSync │ 0 │
+│ opsDispatchedAsync │ 0 │
+│ opsDispatchedAsyncUnref │ 0 │
+│ opsCompleted │ 9 │
+│ opsCompletedSync │ 0 │
+│ opsCompletedAsync │ 0 │
+│ opsCompletedAsyncUnref │ 0 │
+│ bytesSentControl │ 504 │
+│ bytesSentData │ 0 │
+│ bytesReceived │ 856 │
+└─────────────────────────┴───────────┘
```
### Schematic diagram