@contrast/route-metrics
Version:
`route-metrics` allows server performance, exclusive of network time, to be compared on a route-by-route basis. It was created to compare server performance with and without `@contrast/agent` being loaded and active.
24 lines (22 loc) • 589 B
JavaScript
;
//+
// example template that collects all routes beginning with "/noecho" into
// one route name "noecho (ALL PARAMS)".
//-
module.exports = {
// template format version
version: '1.0.0',
// reserved for future use
options: {
reserved: true
},
// allow labeling when reporting in the future
labels: {
title: 'this is my test server'
},
// group routes that match the regex and method as the specified name. a route can
// match more than one regex.
routes: [
{name: 'noecho (ALL PARAMS)', method: 'POST', regex: /^\/noecho(\?.+)?/},
]
};