Giter Club home page Giter Club logo

express-middleware-server-timing's Introduction

express-middleware-server-timing

Automagic expressjs middleware performance monitoring.

There are many server-timing libraries out there for expressjs, but I couldn't find any that provided any out-of-the-box value.

Installation

npm install --save express-middleware-server-timing

Usage

const app = express()

// any time before `app.listen(...)`
require('express-middleware-server-timing')(app, [options])

The following table describes the properties of the options object.

Property Description Type Default
name name of the server timing metric String 'mw'
description description of the server timing metric String undefined
disabled set true if you want to disable Boolean false

A server-timing entry named <name> (with optional description of <description>) will be generated for every request that passes through express.

Manual instrumentation

serverTimingStart / serverTimingStop

To create a server-timing entry reporting the duration between two check points of the same response, try:

app.get(path, function (req, res, next) {
  res.serverTimingStart('foo', 'bar')

  // some time later, maybe in different middleware handler
  res.serverTimingStop('foo')

  // ...
})

A header like this will be written to the response:

Server-Timing: foo; dur=[time in ms]; desc="bar"

serverTimingSync

To create a server-timing entry reporting the duration it took to execute a syncronous method, try:

app.get(path, function (req, res, next) {
  const result = res.serverTimingSync(function() {
    // slow syncronous code here
  }, 'slowMethod1', 'sometimes this method is slow')

  // ...
})

A header like this will be written to the response:

Server-Timing: slowMethod1; dur=[time in ms]; desc="sometimes this method is slow"

Browser Collection

For browsers that suport server-timing (Chrome 65+, Opera 52+), the entries can be accessed like this:

['navigation', 'resource']
  .forEach(function(entryType) {
    performance.getEntriesByType(entryType).forEach(function({name: url, serverTiming}) {
      serverTiming.forEach(function({name, duration, description}) {
        console.info('expressjs middleware =',
          JSON.stringify({url, entryType, name, duration, description}, null, 2))
      })
    })
})

Decide to use it regarding to running environment

require('express-middleware-server-timing')(app, {
  disabled: process.env.NODE_ENV === 'production'
})

License

MIT

express-middleware-server-timing's People

Contributors

cvazac avatar muratcorlu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.