-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
101 lines (94 loc) · 3.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/// <reference types="express-serve-static-core" />
/// <reference types="next" />
import { Request, RequestHandler, ErrorRequestHandler } from 'express-serve-static-core';
import { LogSeverity } from "./src/severity";
import { StructuredLogger, StructuredRequestLogger } from './src/StructuredLogger';
import { requestToHttpRequest } from "./src/request-transformers";
import { extractTraceContext } from "./src/trace-context";
import { NextRequest as _NextRequest } from 'next/server'
/** @see https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#httprequest */
export interface LoggingHttpRequest {
requestMethod: string;
requestUrl: string;
remoteIp?: string;
referer?: string;
userAgent?: string;
protocol?: string;
status?: number;
requestSize?: number;
responseSize?: number;
latency?: { seconds: number, nanos?: number };
}
export interface TraceContext {
/** Format `projects/<PROJECT-ID>/traces/<TRACE-ID>`. */
trace: string;
spanId: string;
traceSampled: boolean;
}
/** @see https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry */
export interface LogEntry {
timestamp: bigint;
severity: LogSeverity;
insertId?: string;
httpRequest?: LoggingHttpRequest;
labels?: { [k: string]: string };
/** Format `projects/<PROJECT-ID>/traces/<TRACE-ID>`. */
trace?: string;
spanId?: string;
traceSampled?: boolean;
operation?: { id: string, producer?: string, first?: boolean, last?: boolean };
sourceLocation?: { file?: string, line?: number | string, function?: string };
textPayload?: string;
jsonPayload?: any;
protoPayload?: any;
}
export interface TransportLogEntry extends Omit<LogEntry, 'timestamp' | 'jsonPayload' | 'textPayload' | 'protoPayload'> {
logName: string;
timestamp: { seconds: number, nanos?: number };
}
export interface ServiceContext {
service: string;
version?: string;
}
export type ExtractUser = (req: Request | _NextRequest) => string | null | void;
export type Transport = (entry: TransportLogEntry, data: string | { message?: string, [k: string]: any }) => void;
export interface LoggingConfig {
/** GCP project ID. */
projectId: string;
/** Used for `log_name` label. */
logName: string;
/** Used for error reporting. */
serviceContext: ServiceContext;
/** Optional function to get a user from a request to apply to error reports. */
requestUserExtractor?: ExtractUser;
/** Extra labels to apply to all logs. */
extraLabels?: {
[labelName: string]: string;
};
/** Optional function to output log entries to a custom location. */
productionTransport?: Transport;
}
export type StructuredLogger = StructuredLogger;
export type StructuredRequestLogger = StructuredRequestLogger;
export class Logging {
constructor(config: LoggingConfig);
readonly logger: StructuredLogger;
makeLoggingMiddleware(): RequestHandler;
/** This should be attached after adding the result of `makeLoggingMiddleware`. */
makeErrorMiddleware(): ErrorRequestHandler;
nextJSMiddleware(req: _NextRequest): void;
/** @returns A function to call to detach from the process. */
attachToProcess(loggingTo: StructuredLogger): () => void;
}
// Add in support for a .log property on an Express request
declare global {
namespace Express {
interface Request {
readonly log: StructuredRequestLogger;
}
}
declare interface NextRequest extends _NextRequest {
readonly log: StructuredRequestLogger;
}
}
export { requestToHttpRequest, extractTraceContext, LogSeverity };