Blame view

oneapm.js 340 Bytes
姜枫 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/**
 * OneAPM agent configuration
 */

const commonConfig = require('./config/common');

exports.config = {
    app_name: [commonConfig.appName],
    license_key: 'BwEGA1dRDlQ6357HHQ1AD1xJVkbc9fNfWRtQUwhQG41c5QFWGFIDSQoHc0e8AgMaUlcUVw0=',
    logging: {
        level: 'info'
    },
    transaction_events: {
        enabled: true
    }
沈志敏 authored
16
};