2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync } from "./dispatch_json.ts";
|
2018-10-05 13:21:15 -04:00
|
|
|
|
2019-02-13 08:50:15 -05:00
|
|
|
export interface Metrics {
|
2018-10-05 13:21:15 -04:00
|
|
|
opsDispatched: number;
|
|
|
|
opsCompleted: number;
|
|
|
|
bytesSentControl: number;
|
|
|
|
bytesSentData: number;
|
|
|
|
bytesReceived: number;
|
|
|
|
}
|
|
|
|
|
2019-03-20 12:39:47 -04:00
|
|
|
/** Receive metrics from the privileged side of Deno.
|
|
|
|
*
|
2019-04-03 08:53:54 -04:00
|
|
|
* > console.table(Deno.metrics())
|
|
|
|
* ┌──────────────────┬────────┐
|
|
|
|
* │ (index) │ Values │
|
|
|
|
* ├──────────────────┼────────┤
|
|
|
|
* │ opsDispatched │ 9 │
|
|
|
|
* │ opsCompleted │ 9 │
|
|
|
|
* │ bytesSentControl │ 504 │
|
|
|
|
* │ bytesSentData │ 0 │
|
|
|
|
* │ bytesReceived │ 856 │
|
|
|
|
* └──────────────────┴────────┘
|
2019-03-20 12:39:47 -04:00
|
|
|
*/
|
2019-03-09 12:30:38 -05:00
|
|
|
export function metrics(): Metrics {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_metrics");
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|