pinpoint-node-agent
Version:
Pinpoint APM agent for Node.js — distributed tracing, error analysis, and URI statistics
26 lines (20 loc) • 497 B
JavaScript
/**
* Pinpoint Node.js Agent
* Copyright 2020-present NAVER Corp.
* Apache License v2.0
*/
class NormalizedSql {
static nullObject = new NormalizedSql('', '')
constructor(normalizedSql, parseParameter) {
this.normalizedSql = normalizedSql
this.parseParameter = parseParameter
}
getNormalizedSql() {
return this.normalizedSql
}
getParseParameter() {
return this.parseParameter
}
}
module.exports = NormalizedSql