@awarns/tracing
Version:
AwarNS Framework package that eases the tracing and debugging of complex task execution workflows
15 lines (11 loc) • 378 B
TypeScript
import { PluginLoader } from '@awarns/core';
import { TracesStore } from './stores';
export * from './entities';
export * from './tasks';
export * from './stores';
export * from './exporters';
export interface TracingConfig {
externalTracesStore?: TracesStore;
oldTracesMaxAgeHours?: number;
}
export function registerTracingPlugin(config?: TracingConfig): PluginLoader;