Socket
Socket
Sign inDemoInstall

node-express-metrics

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-express-metrics

Express middleware to log the metrics traces


Version published
Weekly downloads
12
increased by71.43%
Maintainers
1
Weekly downloads
 
Created
Source

node-express-metrics

Express middleware to log metrics traces

npm version Build Status Coverage Status

This express middleware gathers the metrics information from a metrics object stored in the process domain: process.domain.metrics.

For each request, the middleware initializes the metrics object and, at the end of the response, logs the information stored in the metrics object. It is responsibility of the service logic to enrich this metrics object.

Installation

npm install node-express-metrics

Basic usage

var express = require('express'),
    logger = require('logops'),
    expressDomain = require('express-domaining'),
    expressTracking = require('express-tracking'),
    expressMetrics = require('node-express-metrics');

var app = express();
app.use(expressDomain(logger));
app.use(expressTracking({op: 'test'}));
app.use(expressMetrics(logger));

app.get('/version', function(req, res) {
   //Add metrics information
   var metrics = process.domain.metrics;
   metrics.operationStatus = 'ok';
   metrics.clientAddress = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
   res.status(200).json({version: '1.0.0'});
});

app.listen(3000);

Options

The express middleware may receive an object with optional settings:

OptionTypeDefaultDescription
loggerObjectnull logger module ({info: function(msg, metricsObject)})

Full example

It is recommended to use this express middleware in combination with:

  • express-domaining. Express middleware to automatically create and destroy a domain.
  • express-logging. Express middleware to log each request and response.
  • express-tracking. Express middleware to track the request and response storing in the domain the operation, transactionId and correlator.
var express = require('express'),
    expressDomain = require('express-domaining'),
    expressTracking = require('express-tracking'),
    expressLogging = require('express-logging'),
    expressMetrics = require('node-express-metrics'),
    logger = require('logops');

logger.getContext = function() {
  return process.domain && process.domain.tracking;
};

var app = express();
app.use(expressDomain(logger));
app.use(expressTracking({op: 'test'}));
app.use(expressLogging(logger));
app.use(expressMetrics(logger));

app.get('/test', function(req, res) {
  res.status(200).send();
});

app.get('/version', function(req, res) {
   //Add metrics information
   var metrics = process.domain.metrics;
   metrics.operationStatus = 'ok';
   metrics.clientAddress = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
   res.status(200).json({version: '1.0.0'});
});

app.listen(3000);

After launching the previous server, each HTTP request generates 2 log entries to trace the request and response and another log entry with the metrics information:

{"time":"2015-07-08T20:31:25.210Z","lvl":"INFO","corr":"7a051a2b-e3e8-4625-a680-1ae30105cdda","trans":"7a051a2b-e3e8-4625-a680-1ae30105cdda","op":"test","msg":"Request from 127.0.0.1: GET /version"}
{"time":"2015-07-08T20:31:25.212Z","lvl":"INFO","corr":"7a051a2b-e3e8-4625-a680-1ae30105cdda","trans":"7a051a2b-e3e8-4625-a680-1ae30105cdda","op":"test","msg":"Response with status 304 in 3 ms."}
{"time":"2015-07-08T20:31:25.214Z","lvl":"INFO","corr":"7a051a2b-e3e8-4625-a680-1ae30105cdda","trans":"7a051a2b-e3e8-4625-a680-1ae30105cdda","op":"test","msg":"metrics","operationStatus":"ok","clientAddress":"127.0.0.1"}

License

Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FAQs

Package last updated on 09 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc