UNPKG

@push.rocks/smartlog-destination-clickhouse

Version:

A library to integrate Smartlog logging with ClickHouse database for efficient log storage and querying.

10 lines (9 loc) 545 B
import * as plugins from './slclick.plugins.js'; export declare class SmartlogDestinationClickhouse implements plugins.smartlogInterfaces.ILogDestination { static createAndStart(optionsArg: plugins.smartclickhouse.IClickhouseConstructorOptions): Promise<SmartlogDestinationClickhouse>; private smartclickhouseDb; private logTable; constructor(options: plugins.smartclickhouse.IClickhouseConstructorOptions); start(): Promise<void>; handleLog(logPackage: plugins.smartlogInterfaces.ILogPackage<unknown>): Promise<void>; }