monti-apm-sketches-js

0.0.3 • Public • Published

sketches-js

Fork of sketches-js to fix compatibility with older versions of Node.

An implementation of DDSketch for Node.js.

DDSketch is a data structure for recording large amounts of numeric data and calculating quantiles over that data. It's designed to be fast, fully-mergeable and provide guarantees that a quantile value is within a configurable percentage threshold of the real value.

Implementation

The implementation is based on the official paper: DDSketch: A Fast and Fully-Mergeable Quantile Sketch with Relative-Error Guarantees (PDF)

Usage

npm install monti-apm-sketches-js
const { DDSketch } = require('sketches-js');
 
const sketch = new DDSketch({
  alpha: 0.005 // compute quantiles with precision of 1/2 of a percent
});
 
for (let i = 0; i < 1000; i++) {
  sketch.add(Math.random() * 1000);
}
 
[0.5, 0.75, 0.9, 0.95, 0.99].forEach(function(q) {
  console.log(`p${* 100}${sketch.quantile(q)}`);
});

License

The source code is distributed under the terms of MPL 2.0 license.

Package Sidebar

Install

npm i monti-apm-sketches-js

Weekly Downloads

1

Version

0.0.3

License

MPL-2.0

Unpacked Size

28 kB

Total Files

7

Last publish

Collaborators

  • zodern