@justeat/f-statistics

0.7.0 • Public • Published

f-statistics

Fozzie Bear

A service for publishing statistics from the client side


npm version CircleCI Coverage Status Known Vulnerabilities

This package is an MVP (not yet stable), if you want to use it contact the team first.

  • f-statistics is responsible for transporting statistics provided to it; for example response time statistics from f-http.

  • It is likely the transportation method may change.

Benefits (Now)

  • Hide away how statistics are transported from every day development.
  • Ability to be flexible with where our statistics are transported.
  • Ability for properties to be provided during initialisation, which are included in every publication.

Benefits (Soon)

  • Batching options - to decrease network usage
  • Sampling options - to increase scalability

Usage

Installation

yarn add @justeat/f-statistics

Usage

  • It is not possible to instantiate multiple versions of Just Log in a single website, so provide a prepared Just Log instance where you can, or initialise one yourself.
// Import the pre-requisite packages
import StatisticsModule from '@justeat/f-statistics';
import { justLog } from '@justeat/just-log';

// Initialise Just Log if one is not already available
justLog.forFeature({
    name: 'your website name',
    tenant: 'your tenant',
    version: 'your version number',
    environment: 'your environment name'
});

// Declare basic options
const statisticsConfiguration = {
    environment: 'your environment name',
    featureName: 'your website name',
    // optional batch logging config to overide the default values
    logsMaxByteSize: 2000,
    logsMaxLength: 5,
    logsIntervalTimer: 5000
};

// Optional (provide properties to publish with every statistic)
const baseProperties = {
  my_experiment_bucket: 'Bucket 1'
};

// Initialise a new instance of the statistics client
const statisticsClient = new StatisticsModule(justLog, statsConfiguration, baseProperties);

// Publish a statistic
statisticsClient.publish({
    measureOne: 'Test',
    measureTwo: 'test'
});

// Optionally (Nuxt) inject the statistics client into context
inject('statistics', statisticsClient);

Options

Options should be provided when initialising the statsModule

Parameter Required Description Type
environment yes The name of the environment being used String
featureName yes The name of your feature String
logsMaxByteSize no Total byte size of logs to store before triggering batch publishing Number
logsMaxLength no The number of logs to store before triggering batch publishing. Use 1 to publish immediately Number
logsIntervalTimer no Time in milliseconds to wait before publishing logs. Use 0 to disable batch publishing using timer Number

Client Methods

These are all of the methods exposed by f-statistics

Method Description Parameters Example
publish Transports a message containing the payload provided object publish('This is a message', { measureOne: 'test', measureTwo: 'test' });

Readme

Keywords

Package Sidebar

Install

npm i @justeat/f-statistics

Weekly Downloads

8

Version

0.7.0

License

Apache-2.0

Unpacked Size

25 kB

Total Files

8

Last publish

Collaborators

  • ilia.chikmarev
  • fidel.montesino
  • anastasiia.horban
  • raouf.sawehli
  • mmakwe-onyeka
  • gregory.palaci
  • arielfdr
  • dawidchar
  • roberto.santana
  • lizzie.turney
  • davidpn.11
  • dandel10n
  • mwh1989
  • kevinrodrigues
  • fozzie-bot
  • ashleynolan
  • simonsje
  • xander-marjoram
  • sergii.semenkiv
  • thomaswilliammcclean
  • benrwhite
  • robertellison
  • zlatin.ivanov
  • joshuang2332
  • oliversweb
  • andymayje
  • jamieomaguire
  • adammorr
  • lsphillips