fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-08 09:42:30 +00:00
parent 8d2a4bff17
commit 97538b2a40

View File

@ -54,8 +54,22 @@ export interface ILogContext {
}
export interface ILogCorrelation {
/**
* a unique id for this log
*/
id: string;
type: 'none' | 'group' | 'build' | 'requestchain' | 'job';
/**
* the type of this log
*/
type: 'none' | 'service' | 'build' | 'infrastructure' | 'cdn';
/**
* a series of logs
*/
group?: string;
/**
* a log that belongs to a transaction. E.g. a Payment or a request traveling through multiple backend instances
*/
transaction?: string;
}
/**