TypeOrmHealthIndicator

The TypeOrmHealthIndicator contains health indicators which are used for health checks related to TypeOrm

  
class TypeOrmHealthIndicator {
  pingCheck<Key extends string>(key: Key, options: TypeOrmPingCheckSettings = {}): Promise<HealthIndicatorResult<Key>>
}

Methods

pingCheck()

Checks if responds in (default) 1000ms and returns a result object corresponding to the result


pingCheck<Key extends string>(key: Key, options: TypeOrmPingCheckSettings = {}): Promise<HealthIndicatorResult<Key>>

Parameters

Option Type Description
key Key

The key which will be used for the result object

options TypeOrmPingCheckSettings

The options for the ping


Optional. Default is `{}`.

Examples

    
typeOrmHealthIndicator.pingCheck('database', { timeout: 1500 });

Returns

Promise<HealthIndicatorResult<Key>>