AnonSec Team
Server IP : 161.35.85.9  /  Your IP : 216.73.217.138
Web Server : nginx/1.30.4
System : Linux cheapdeb-ams3 7.1.13+deb14-amd64 #1 SMP PREEMPT_DYNAMIC Debian 7.1.13-1 (2026-09-03) x86_64
User : root ( 0)
PHP Version : 8.2.18
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /usr/share/doc/node-chrome-trace-event/examples/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /usr/share/doc/node-chrome-trace-event/examples/hello.js
/*
 * A first example showing trace-event usage.
 * We emit begin/end events for a single call to `doSomething()`.
 */

/*
 * First create the tracer `evt` that we'll use for instrumenting code.
 *
 * Notes:
 * - More realistically we'd stream these to an event log file (see
 *   examples/event-log.js). This just shows you the default output.
 * - By default the emitted 'data' events are make up a JSON array of
 *   event objects, suitable for piping directly to stdout or a file.
 *   This format is as expected by
 *   [`trace2html`](https://github.com/google/trace-viewer#readme).
 * - See examples/object-mode.js for raw event objects.
 * - See examples/child.js for a larger example.
 */
var evt = new (require("../dist/trace-event")).Tracer();

evt.on("data", function(data) {
  console.log("EVENT: %j", data);
});

// Instrument code with evt.{begin|instant|end} calls.
function doSomething(cb) {
  evt.begin({ name: "doSomething", id: "1" });
  // Takes 1s to do all this processing for "something".
  setTimeout(function() {
    evt.end({ name: "doSomething", id: "1" });
    cb();
  }, 1000);
}

console.log("hi");
doSomething(function() {
  console.log("bye");
});

AnonSec - 2021