mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
27 lines
730 B
TypeScript
27 lines
730 B
TypeScript
|
import type { BaseCallbackConfig } from '@langchain/core/callbacks/manager';
|
||
|
import type { IExecuteFunctions } from 'n8n-workflow';
|
||
|
|
||
|
interface TracingConfig {
|
||
|
additionalMetadata?: Record<string, unknown>;
|
||
|
}
|
||
|
|
||
|
export function getTracingConfig(
|
||
|
context: IExecuteFunctions,
|
||
|
config: TracingConfig = {},
|
||
|
): BaseCallbackConfig {
|
||
|
const parentRunManager = context.getParentCallbackManager
|
||
|
? context.getParentCallbackManager()
|
||
|
: undefined;
|
||
|
|
||
|
return {
|
||
|
runName: `[${context.getWorkflow().name}] ${context.getNode().name}`,
|
||
|
metadata: {
|
||
|
execution_id: context.getExecutionId(),
|
||
|
workflow: context.getWorkflow(),
|
||
|
node: context.getNode().name,
|
||
|
...(config.additionalMetadata ?? {}),
|
||
|
},
|
||
|
callbacks: parentRunManager,
|
||
|
};
|
||
|
}
|