A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
npm install --save @nestjs/terminus @godaddy/terminus
Import the Terminus module with the following options for a database health check
const getTerminusOptions = (
db: DatabaseHealthIndicator,
): TerminusModuleOptions => ({
endpoints: [
{
// The health check will be available with /health
url: '/health',
// All the indicator which will be checked when requesting /health
healthIndicators: [
// Set the timeout for a response to 300ms
async () => db.pingCheck('database', { timeout: 300 })
],
},
],
});
@Module({
imports:[
// Make sure TypeOrmModule is available in the module context
TypeOrmModule.forRoot({ ... }),
TerminusModule.forRootAsync({
// Inject the DatabaseHealthIndicator provided by nestjs/terminus
inject: [DatabaseHealthIndicator],
useFactory: db => getTerminusOptions(db),
}),
],
})
export class HealthModule { }
If everything is set up correctly, you can access the healthcheck on http://localhost:3000/health
.
{
"status": "ok",
"info": {
"database": {
"status": "up"
}
}
}
For more information, see docs or for the internal documentation
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec & Livio Brunner
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.