blob: 81dda2dce6d3e1bc7fc70f107d0ce8b0b9f445a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution
* License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html).
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*eslint-env node */
var express = require('express');
module.exports = {};
module.exports.router = function(options) {
var configParams = options.configParams;
if (!configParams) { throw new Error('options.configParams is required'); }
return express.Router()
.get('*', /* @callback */ function (req, res) {
res.setHeader("Cache-Control", "public, max-age=86400, must-revalidate");
return res.status(200).json({
tid: options.configParams["orion.metrics.google.tid"],
siteSpeedSampleRate: Math.min(100, Math.max(0, Number(options.configParams["orion.metrics.google.tid"]))) || undefined
});
});
};
|