Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.39 KB

README.md

File metadata and controls

39 lines (24 loc) · 1.39 KB

Time Scope

timescope

Gitter TravisCI far20OSS Lifecycle License

TimeScope is a visualization component for different time series as a combination of line, bar and scater charts, allowing quick analysis of different time series data from sources like perturbations, variance, single-threaded execution, and more.

TimeScope begins by displaying the input data as an interactive subsecond-offset graph. This shows patterns in the data. You can then select a time range to highlight on different patterns, and a flame graph will be generated just for that time range.

Disclaimer

TimeScope is in early stages of development and under constant change, so bugs and issues are expected. We count on your support to find and report them!

Installation / Instructions

The quickest way to get started is to run the pre-built client bundle:

npm install time-scope

Use as a React Component

import { TimeScope } from 'time-scope';

const SomeComponent = ()=>{

 return <div>
  <TimeScope data={....} options={...} />
</div>;

}