in monitoring/src/utils/config-builder/config-builder.ts [61:72]
static getAmpUrl(stage: Stage): string {
switch (stage) {
case STAGES.PROD:
return ConfigAMPArticleURl.PROD;
case STAGES.CODE:
return ConfigAMPArticleURl.CODE;
case STAGES.LOCAL:
return ConfigAMPArticleURl.LOCAL;
default:
return ConfigAMPArticleURl.CODE;
}
}