diff --git a/ts/index.ts b/ts/index.ts index 8dc9cf8..121d9d6 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -53,6 +53,11 @@ export interface ILogContext { zone: string; } +export interface ILogCorrelation { + id: string; + type: 'group' | 'build' | 'requestchain' | 'job'; +} + /** * the main logpackage */ @@ -67,7 +72,7 @@ export interface ILogPackage { /** * allows grouping of log messages */ - correlationId: string; + correlation: ILogCorrelation; /** * the message to log */