Skip to content

Commit

Permalink
Improves ops metrics log message
Browse files Browse the repository at this point in the history
  • Loading branch information
TinaHeiligers committed Dec 7, 2021
1 parent 01135bd commit 8231dda
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/core/server/metrics/logging/get_ops_metrics_log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,13 @@ export function getEcsOpsMetricsLog(metrics: OpsMetrics) {
};

return {
message: `${processMemoryUsedInBytesMsg}${uptimeValMsg}${loadValsMsg}${eventLoopDelayValMsg}${eventLoopDelayHistMsg}`,
message: [
processMemoryUsedInBytesMsg,
uptimeValMsg,
loadValsMsg,
eventLoopDelayValMsg,
eventLoopDelayHistMsg,
].join(''),
meta,
};
}

0 comments on commit 8231dda

Please sign in to comment.