16 lines
399 B
TypeScript
16 lines
399 B
TypeScript
|
|
/**
|
||
|
|
* Connection management for Elasticsearch client
|
||
|
|
*
|
||
|
|
* This module provides:
|
||
|
|
* - Connection pooling and lifecycle management
|
||
|
|
* - Health monitoring with periodic checks
|
||
|
|
* - Circuit breaker pattern for fault tolerance
|
||
|
|
* - Automatic reconnection
|
||
|
|
*
|
||
|
|
* @packageDocumentation
|
||
|
|
*/
|
||
|
|
|
||
|
|
export * from './health-check.js';
|
||
|
|
export * from './circuit-breaker.js';
|
||
|
|
export * from './connection-manager.js';
|