filebeat-logger
Version:
A winston logger that prints json lines in elastic common schema format
14 lines (13 loc) • 335 B
TypeScript
export interface Options {
printTimestamp?: boolean;
logLevel?: string;
keysOrder?: string[];
stderrLevels?: string[];
appEnvironment?: string;
}
export declare function optionDefaults(): {
printTimestamp: boolean;
keysOrder: string[];
stderrLevels: string[];
appEnvironment: string | undefined;
};