mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
docs: update Deno.metrics() table data (#9999)
This commit is contained in:
parent
eed4e29337
commit
e33e46e13b
1 changed files with 15 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue