pinpoint-node-agent
Version:
Pinpoint node agent provided by NAVER
23 lines (20 loc) • 334 B
JavaScript
/**
* Pinpoint Node.js Agent
* Copyright 2020-present NAVER Corp.
* Apache License v2.0
*/
const HistogramSchema = {
FAST_SCHEMA: {
typeCode: 1,
fast: 100,
normal: 300,
slow: 500,
},
NORMAL_SCHEMA: {
typeCode: 2,
fast: 1000,
normal: 3000,
slow: 5000,
}
}
module.exports = HistogramSchema