mirror of
https://github.com/movie-web/backend.git
synced 2025-09-13 13:03:26 +00:00
Ignore healthcheck and metrics
This commit is contained in:
@@ -64,6 +64,8 @@ export function scopedLogger(service: string, meta: object = {}) {
|
|||||||
return logger;
|
return logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ignoredUrls = ['/healthcheck', '/metrics'];
|
||||||
|
|
||||||
export function makeFastifyLogger(logger: winston.Logger) {
|
export function makeFastifyLogger(logger: winston.Logger) {
|
||||||
logger.format = winston.format.combine(
|
logger.format = winston.format.combine(
|
||||||
winston.format((info) => {
|
winston.format((info) => {
|
||||||
@@ -78,6 +80,9 @@ export function makeFastifyLogger(logger: winston.Logger) {
|
|||||||
let url = request.url;
|
let url = request.url;
|
||||||
try {
|
try {
|
||||||
const pathParts = (request.url as string).split('?', 2);
|
const pathParts = (request.url as string).split('?', 2);
|
||||||
|
|
||||||
|
if (ignoredUrls.includes(pathParts[0])) return false;
|
||||||
|
|
||||||
if (pathParts[1]) {
|
if (pathParts[1]) {
|
||||||
const searchParams = new URLSearchParams(pathParts[1]);
|
const searchParams = new URLSearchParams(pathParts[1]);
|
||||||
pathParts[1] = searchParams.toString();
|
pathParts[1] = searchParams.toString();
|
||||||
|
Reference in New Issue
Block a user