We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814937b commit 8975b49Copy full SHA for 8975b49
README.md
@@ -74,6 +74,10 @@ Returns the current execution context identified with the current asyncId.
74
75
Runs a given function under a dedicated AsyncResource, exposing given initial context to the process and it's child processes.
76
77
+### monitor(): ExecutionMapUsage
78
+
79
+Returns an monitoring report over the current execution map resources
80
81
### API Usage
82
83
@@ -107,6 +111,7 @@ Promise.resolve().then(() => {
107
111
}, 1000);
108
112
109
113
console.log(Context.get()); // outputs: {"value": true}
114
+ console.log(Context.monitor) // Will result with monitor result
110
115
});
116
117
```
0 commit comments