2.2.3 • Published 5 years ago

statful-client-javascript v2.2.3

Weekly downloads
81
License
MIT
Repository
github
Last release
5 years ago

statful-client-javascript

Statful client for Javascript. This client is intended to gather metrics and send them to Statful.

Build Status devDependency Status install size

Table of Contents

Supported Versions

It supports every browser that has full support for the ECMAScript 5 specification.

Installation

npm install --save statful-client-javascript

or

bower install --save statful-client-javascript

Quick Start

After installing Statful Client you are ready to use it. The quickest way is to do the following:

    <script type="text/javascript" src="node_modules/statful-client-javascript/dist/statful.umd.min.js"></script>

    <script>    
        // Init statful       
        statful.initialize({
            dryrun: false,
            debug: false,
            app: 'exampleApp',          
            flushInterval: 5000
        });

        // Send a metric
        statful.counter('page_load');
    </script>

Reference

Reference if you want to take full advantage from Statful.

Global configuration

The custom options that can be set on config param are detailed below.

OptionDescriptionTypeDefaultRequired
dryRunDefines if metrics should be output to the logger instead of being send.booleanfalseNO
debugDefines logs should be sent to console.booleanfalseNO
appDefines the application global name. If specified sets a global tag app=setValue.stringundefinedNO
namespaceDefines the global namespace.stringwebNO
sampleRateDefines the rate sampling. Should be a number between 1, 100.number100NO
flushIntervalDefines the periodicity of buffer flushes in milliseconds.number10000NO
timeoutDefines the timeout.number2000NO
tagsDefines the global tags.object{}NO
aggregationsDefines the global aggregations.object[]NO
aggregationFrequencyDefines the global aggregation frequency.number10NO

Methods

counter, gauge, timer

These methods receive a metric name and a metric value as arguments and send a counter/gauge/timer metric. If the options parameter is omitted, the default values are used. These methods will add metrics to a queue that will be flushed using the interval defined on flushInterval.

statful.counter('myCounter', 1, {agg: ['sum']});
statful.gauge('myGauge', 10, { tags: { host: 'localhost' } });
statful.timer('myCounter', 200, {namespace: 'sandbox'});

sendMetric

This method receive a metric type, metric name and a metric value as arguments and send a counter/gauge/timer metric. If the options parameter is omitted, the default values are used. This method will send metrics to the server without being added to the queue.

statful.sendMetric('counter', 'myCounter', 1, {agg: ['sum']});

Read the methods options reference bellow to get more information about the default values.

OptionDescriptionTypeDefault for CounterDefault for GaugeDefault for Timer
aggDefines the aggregations to be executed. These aggregations are merged with the ones configured globally, including method defaults. Valid Aggregations: avg, count, sum, first, last, p90, p95, p99, min, maxarray['sum', 'count'][last]['avg', 'p90', 'count']
aggFreqDefines the aggregation frequency in seconds. It overrides the global aggregation frequency configuration. Valid Aggregation Frequencies: 10, 30, 60, 120, 180, 300number101010
sampleRateDefines the rate sampling. It overrides the global namespace configuration.number100100100
namespaceDefines the namespace of the metric. It overrides the global namespace configuration.stringwebwebweb
tagsDefines the tags of the metric. These tags are merged with the ones configured globally, including method defaults.object{}{}{ unit: 'ms' }

Plugins

User Timing

Support for the user-timing specification is available. You can check the current compatibility table here.

Performance Mark

statful.registerMark('mark_start');
statful.registerMark('mark_end');

Performance Measure sent to Statful as a Timer

// Measure and Timer between two marks

statful.registerMark('mark_start');
statful.registerMark('mark_end');

var options = {
    startMark: 'mark_start',
    endMark: 'mark_end'
    tags: {mark: my_tag}
}

statful.registerMeasure('measure_name', 'metric_name' options);
// Measure and Timer from the navigationStart event until the current time

var options = {
    tags: {mark: my_tag}
}

statful.registerMeasure('measure_name', 'metric_name' options);

You can omit both start and end mark names:

  • if startMark is missing it will be measured from the navigationStart event
  • if endMark is missing it will be measured until the current high precision time

Development

Installation

$ npm install

Tests

$ npm test

Contribute

Follow the standard Fork and Pull Request workflow and:

  • Add tests for new feats
  • Make sure the test suite passes
  • Update or add documentation accordingly

Authors

Mindera - Software Craft

License

Statful Javascript Client is available under the MIT license. See the LICENSE file for more information.

2.2.3

5 years ago

2.2.2

5 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.1.7

6 years ago

2.1.6

6 years ago

2.1.5

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

7 years ago

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

1.1.8

7 years ago

1.1.6

8 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago