Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authortheanarkh <theratliter@gmail.com>2022-08-28 21:06:27 +0300
committerJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-11 22:45:19 +0300
commit6b8ed279fd515362cde19fea7dfc9a5b27ef5904 (patch)
treedcbb70e633fc6fdaa1a4c68846e48f16011ce11c /doc
parenta3bdd07321d363f5c2a56961be57cf5f8cb158d1 (diff)
src: trace fs async api
PR-URL: https://github.com/nodejs/node/pull/44057 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/tracing.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/tracing.md b/doc/api/tracing.md
index a0bd4060ca4..ab3603475df 100644
--- a/doc/api/tracing.md
+++ b/doc/api/tracing.md
@@ -26,6 +26,11 @@ The available categories are:
* `node.net.native`: Enables capture of trace data for network.
* `node.environment`: Enables capture of Node.js Environment milestones.
* `node.fs.sync`: Enables capture of trace data for file system sync methods.
+* `node.fs_dir.sync`: Enables capture of trace data for file system sync
+ directory methods.
+* `node.fs.async`: Enables capture of trace data for file system async methods.
+* `node.fs_dir.async`: Enables capture of trace data for file system async
+ directory methods.
* `node.perf`: Enables capture of [Performance API][] measurements.
* `node.perf.usertiming`: Enables capture of only Performance API User Timing
measures and marks.