UNPKG

fastify-custom-healthcheck

Version:

Fastify plugin that allows to add custom health checks in your server

12 lines (8 loc) 204 B
'use strict'; const creationTime = new Date().toISOString(); const getStats = () => ({ creationTime, uptime: process.uptime(), memory: { ...process.memoryUsage() } }); module.exports = getStats;