smartlog-interfaces/ts/index.ts

127 lines
2.4 KiB
TypeScript
Raw Normal View History

2022-10-26 13:18:09 +00:00
import * as plugins from './smartlog-interfaces.plugins.js';
2019-10-22 13:10:32 +00:00
2022-10-26 13:18:09 +00:00
import * as requestInterfaces from './smartlog-interfaces.requests.js';
2019-10-22 14:53:22 +00:00
2020-06-04 15:12:36 +00:00
export { requestInterfaces as request };
2019-10-22 14:53:22 +00:00
/**
* the different available log types
*/
export type TLogType =
| 'log'
| 'increment'
| 'gauge'
| 'error'
| 'success'
| 'value'
| 'finance'
2018-11-16 19:27:21 +00:00
| 'compliance';
/**
* the available log levels
*/
2018-11-16 19:27:21 +00:00
export type TLogLevel =
| 'silly'
| 'info'
| 'debug'
| 'note'
| 'ok'
| 'success'
| 'warn'
| 'error'
| 'lifecycle';
/**
* the available environments
*/
2018-03-01 21:33:47 +00:00
export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
/**
* the available runtimes
*/
2020-06-10 04:52:20 +00:00
export type TRuntime = 'node' | 'chrome' | 'rust' | 'deno' | 'cloudflare_workers';
2018-02-08 00:52:08 +00:00
2020-06-04 15:04:44 +00:00
/**
2020-06-04 15:12:36 +00:00
* the log context e.g. what app in what version on what server
2020-06-04 15:04:44 +00:00
*/
2018-02-08 00:52:08 +00:00
export interface ILogContext {
2024-06-06 14:48:19 +00:00
commitinfo?: plugins.tsclass.code.ICommitInfo;
2018-02-08 00:52:08 +00:00
company?: string;
companyunit?: string;
containerName?: string;
2024-06-06 14:48:19 +00:00
environment?: TEnvironment;
runtime?: TRuntime;
zone?: string;
2018-02-08 00:52:08 +00:00
}
2020-06-05 06:53:27 +00:00
export interface ILogCorrelation {
2020-06-08 09:42:30 +00:00
/**
* a unique id for this log
*/
2020-06-05 06:53:27 +00:00
id: string;
2020-06-08 09:42:30 +00:00
/**
* the type of this log
*/
type: 'none' | 'service' | 'build' | 'infrastructure' | 'cdn';
2020-06-08 09:50:21 +00:00
/**
* the instance on which the log is created
* use it for pinning logs to a certain instance in a cluster
*/
instance?: string;
2020-06-08 09:42:30 +00:00
/**
* 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;
2020-06-05 06:53:27 +00:00
}
2020-06-04 15:04:44 +00:00
/**
* the main logpackage
*/
export interface ILogPackage<T = unknown> {
/**
* a unix timestamp in milliseconds
*/
2018-11-04 17:15:46 +00:00
timestamp: number;
type: TLogType;
context: ILogContext;
level: TLogLevel;
2020-06-04 15:04:44 +00:00
/**
* allows grouping of log messages
*/
2020-06-05 06:53:27 +00:00
correlation: ILogCorrelation;
2020-06-05 01:15:46 +00:00
/**
* the message to log
*/
2018-03-01 21:33:47 +00:00
message: string;
2020-06-04 15:04:44 +00:00
data?: T;
}
export interface ILogPackageDataRequest {
2020-06-05 01:15:46 +00:00
requestCorrelationId: string;
2020-06-04 15:04:44 +00:00
url: string;
pathname: string;
method: string;
status: string;
2018-02-28 23:32:21 +00:00
}
2018-10-31 12:49:12 +00:00
export interface ILogPackageAuthenticated {
auth: string;
logPackage: ILogPackage;
}
2020-09-03 22:08:23 +00:00
export interface ILogPackageArrayAuthenticated {
auth: string;
logPackages: ILogPackage[];
}
2020-06-04 15:04:44 +00:00
/**
* a destination interface for extending smartlog modules
*/
2018-02-28 23:32:21 +00:00
export interface ILogDestination {
2020-06-10 09:26:47 +00:00
handleLog: (logPackage: ILogPackage) => Promise<void>;
2018-03-01 21:33:47 +00:00
}