tohu

0.2.0 • Public • Published

TOHU

Code Trace
before => after

Some information is just not suitable to be presented as logs and requires different visualisation. Good example are http calls performed by a server during processing of incoming request or events in a distributed system coming in undetermenistic order and duration. Tohu can help transforming such information into format compatible with Chrome's about://tracing, which is awesome frontend for any traces and available almost everywhere alongside with Chrome.

Quickstart

  • Install tohu
npm i tohu --save
  • Include it in your sources
const tohu = require('tohu');

// one eternity later
tohu.toFile('trace.json');
  • View results with chrome tracing frontend
    • Open chrome://tracing in Google Chrome
    • Click "Load" at top left corner
    • Select trace file stored by tohu

Config

Tohu supports following configuration options with tohu.setup() call:

{
  // Enable/disable internal logging of
  // additional debug infor
  quiet: true,
  
  // When true, tohu will store request/response pair bodies 
  // for further analysis. Significantly increases trace file size.
  storeBody: false,
  
  // Allows to specify transport for loggins, transport should suppoort 
  // three levels as methods: debug, info, error
  log: console,
  
  // Defines output format of trace file. Defaults to Chrome's about://tracing
  format: 'chrome-tracing',
  
  // Filename to use for storing trace. Will be stored
  // inside the same directory from which node.js programm was launched
  file: 'tohu.json'
}

Readme

Keywords

Package Sidebar

Install

npm i tohu

Weekly Downloads

2

Version

0.2.0

License

MIT

Unpacked Size

62 kB

Total Files

17

Last publish

Collaborators

  • iamfrontender