diff options
Diffstat (limited to 'cli/js/ops/runtime.ts')
-rw-r--r-- | cli/js/ops/runtime.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/cli/js/ops/runtime.ts b/cli/js/ops/runtime.ts index 7538ce12f..262e46231 100644 --- a/cli/js/ops/runtime.ts +++ b/cli/js/ops/runtime.ts @@ -43,25 +43,6 @@ export interface Metrics { bytesReceived: number; } -/** Receive metrics from the privileged side of Deno. - * - * > console.table(Deno.metrics()) - * ┌─────────────────────────┬────────┐ - * │ (index) │ Values │ - * ├─────────────────────────┼────────┤ - * │ opsDispatched │ 3 │ - * │ opsDispatchedSync │ 2 │ - * │ opsDispatchedAsync │ 1 │ - * │ opsDispatchedAsyncUnref │ 0 │ - * │ opsCompleted │ 3 │ - * │ opsCompletedSync │ 2 │ - * │ opsCompletedAsync │ 1 │ - * │ opsCompletedAsyncUnref │ 0 │ - * │ bytesSentControl │ 73 │ - * │ bytesSentData │ 0 │ - * │ bytesReceived │ 375 │ - * └─────────────────────────┴────────┘ - */ export function metrics(): Metrics { return sendSync("op_metrics"); } |