forked from namshi/winston-graylog2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
53 lines (43 loc) · 1.12 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import {TransportStatic, TransportInstance} from "winston";
declare namespace WinstonGraylog2 {
type GraylogServer = {
host: string;
port: number;
}
type GraylogOptions = {
servers: GraylogServer[];
hostname?: string;
facility?: string;
bufferSize?: number;
}
type Prelog = {
(message: string): string;
}
type LogMessageMeta = {
[index: string]: any;
}
type ProcessMeta = {
(meta: LogMessageMeta): LogMessageMeta
}
type TransportOptions = {
graylog?: GraylogOptions;
level?: string;
name?: string;
silent?: boolean;
handleExceptions?: boolean;
prelog?: Prelog;
processMeta?: ProcessMeta;
staticMeta?: LogMessageMeta;
}
interface Graylog2TransportInstance extends TransportInstance {
graylog: GraylogOptions;
prelog: Prelog;
processMeta: ProcessMeta;
staticMeta: LogMessageMeta;
}
interface Graylog2TransportStatic extends TransportStatic {
new(options?: TransportOptions): Graylog2TransportInstance;
}
}
declare const WinstonGraylog2: WinstonGraylog2.Graylog2TransportInstance;
export = WinstonGraylog2;