@@ -173,14 +173,25 @@ DispatchResponse TracingAgent::stop() {
173
173
DispatchResponse TracingAgent::getCategories (
174
174
std::unique_ptr<protocol::Array<String>>* categories) {
175
175
*categories = Array<String>::create ();
176
- categories->get ()->addItem (" node" );
177
- categories->get ()->addItem (" node.async" );
178
- categories->get ()->addItem (" node.bootstrap" );
179
- categories->get ()->addItem (" node.fs.sync" );
180
- categories->get ()->addItem (" node.perf" );
181
- categories->get ()->addItem (" node.perf.usertiming" );
182
- categories->get ()->addItem (" node.perf.timerify" );
183
- categories->get ()->addItem (" v8" );
176
+ protocol::Array<String>* categories_list = categories->get ();
177
+ categories_list->addItem (" node" );
178
+ categories_list->addItem (" node.async_hooks" );
179
+ categories_list->addItem (" node.bootstrap" );
180
+ categories_list->addItem (" node.console" );
181
+ categories_list->addItem (" node.dns.native" );
182
+ categories_list->addItem (" node.net.native" );
183
+ categories_list->addItem (" node.environment" );
184
+ categories_list->addItem (" node.fs.sync" );
185
+ categories_list->addItem (" node.fs_dir.sync" );
186
+ categories_list->addItem (" node.fs.async" );
187
+ categories_list->addItem (" node.fs_dir.async" );
188
+ categories_list->addItem (" node.perf" );
189
+ categories_list->addItem (" node.perf.usertiming" );
190
+ categories_list->addItem (" node.perf.timerify" );
191
+ categories_list->addItem (" node.promises.rejections" );
192
+ categories_list->addItem (" node.vm.script" );
193
+ categories_list->addItem (" v8" );
194
+ categories_list->addItem (" node.http" );
184
195
return DispatchResponse::OK ();
185
196
}
186
197
0 commit comments