RSSHub/newrelic.js

25 lines
681 B
JavaScript

const config = require('./config');
exports.config = {
app_name: ['RSSHub'],
license_key: config.newrelicLicenseKey,
logging: {
level: 'info',
},
allow_all_headers: true,
attributes: {
exclude: [
'request.headers.cookie',
'request.headers.authorization',
'request.headers.proxyAuthorization',
'request.headers.setCookie*',
'request.headers.x*',
'response.headers.cookie',
'response.headers.authorization',
'response.headers.proxyAuthorization',
'response.headers.setCookie*',
'response.headers.x*',
],
},
};