1.0.0 • Published 9 years ago

wreck-stats v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

wreck-stats

wreck-stats is wreck with a stats logging feature.

Build Status

Usage

var Wreck = require('wreck-stats');

// All the methods exposed by Wreck
// https://github.com/hapijs/wreck#advanced
// are available while using wreck-stats.

// Additionally, you can define your logger on Wreck-Stats like below

// your logger
function Logger(stats) {
  console.log(stats);
}

// give your logger to Wreck for logging
// Note: this is a one time configuration.
Wreck.setLogger(Logger);

Wreck.get('https://google.com/', function (err, res, payload) {
    /* do stuff */
});

stats

The object that contains the stats info for each request made by Wreck. It has the below properties.

  • id - A unique identifier string for each request.
  • method - The HTTP methods of the request.
  • uri - The URI of the request.
  • statusCode - The HTTP response status code.
  • duration - The duration taken to process the request (in milliseconds).
1.0.0

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago