@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
21 lines (20 loc) • 755 B
TypeScript
export { TelemetryService } from "./telemetryService.js";
export { tracers } from "./tracers.js";
export { withSpan, withClientSpan, withStreamSpan, withClientStreamSpan, } from "./withSpan.js";
export { ATTR } from "./attributes.js";
/**
* Initialize telemetry for NeuroLink
* Reuses an existing global TracerProvider when one is already registered,
* otherwise bootstraps Neurolink telemetry when an exporter endpoint is configured.
*/
export declare function initializeTelemetry(): Promise<import("./telemetryService.js").TelemetryService>;
/**
* Get telemetry status
*/
export declare function getTelemetryStatus(): Promise<{
enabled: boolean;
initialized: boolean;
endpoint?: string;
service?: string;
version?: string;
}>;