summaryrefslogtreecommitdiff
path: root/docs/contributing
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2021-04-04 17:12:31 +0530
committerGitHub <noreply@github.com>2021-04-04 07:42:31 -0400
commite33e46e13b18fae7e4fb1aef34c9d2bff76e8fdb (patch)
treedbdcb82da740a8687308403432874901094e64d8 /docs/contributing
parenteed4e293372dc44d94207ad6d6815a24f8bb8009 (diff)
docs: update Deno.metrics() table data (#9999)
Diffstat (limited to 'docs/contributing')
-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