Socket
Book a DemoInstallSign in
Socket

traces-graph

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

traces-graph

Pretty graphs for traces

latest
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

traces-graph

Customizable graphs for traces.

Example

var Graph = require('trace-graph')
  , fs = require('fs');

// data would be from traces.get(cycle, fn)
// in the "traces" module
var graph = new Graph(data);

// graph.barWidth(1);
// graph.barSpacing(.5);
// graph.barTip(1);
// graph.max(graph.mean() + 100);
// graph.max(3000);
graph.barAlpha(.4);
graph.scale(1, .12);
graph.label('Image Uploads');
graph.color('request', '#b1daec');
graph.color('resize', '#8fcdec');
graph.color('save', '#4cb4ec');
graph.color('s3', '#1a9dec');
graph.draw();

fs.writeFileSync('out.png', graph.canvas.toBuffer());
console.log('saved out.png');

API

Graph()

Initialize a new graph with the given cycle data.

Graph#max(ms:Number)

Clip the graph at a maximum of ms. For example if a few traces are 2000ms, and most are around 100ms you'll likely want to .max() at around 150 or so to have a better view.

Graph#scale(x:Number, y:Number)

Scale the graph on the x or y axis. For example if you have several hundred thousand traces, representing them each as a single pixel on the x-axis will be too large, you may want to try .scale(.2, 1). Like-wise if the y-axis reaches durations of several seconds, this equates to several thousands of pixels by default unless a y-axis scale is applied such as .scale(1, .5).

Graph#label(str:String)

Add label str.

Graph#barTip(n:Number)

Set bar "tip" to n px.

Graph#barWidth(n:Number)

Set bar "width" to n px.

Graph#barSpacing(n:Number)

Set bar "spacing" to n px.

Graph#barAlpha(n:Number)

Set bar alpha to n [0.7].

Graph#color(type:String, color:String)

Assign color for probe type.

Graph#draw()

Draw the graph.

License

(The MIT License)

Copyright (c) 2012 LearnBoost <tj@vision-media.ca>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

trace

FAQs

Package last updated on 31 Oct 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts