From 685cd7a723d064198fece11c641c548fba34fb1a Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 5 Jun 2020 06:53:27 +0000 Subject: [PATCH] fix(core): update --- ts/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 */