forked from elastic/apm-agent-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
398 lines (362 loc) · 13.3 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*
* Copyright Elasticsearch B.V. and other contributors where applicable.
* Licensed under the BSD 2-Clause License; you may not use this file except in
* compliance with the BSD 2-Clause License.
*/
/// <reference types="node" />
// Note: We avoid import of any external `@types/...` to avoid TypeScript users
// needing to manually install them. The only exception is the prerequisite to
// `npm install -D @types/node`.
import type { IncomingMessage, ServerResponse } from 'http';
import { Connect } from './types/connect';
import { AwsLambda } from './types/aws-lambda';
declare namespace apm {
// Agent API
// https://www.elastic.co/guide/en/apm/agent/nodejs/current/agent-api.html
export interface Agent {
// Configuration
start (options?: AgentConfigOptions): Agent;
isStarted (): boolean;
getServiceName (): string | undefined;
getServiceVersion (): string | undefined;
getServiceEnvironment (): string;
getServiceNodeName (): string | undefined;
setFramework (options: {
name?: string;
version?: string;
overwrite?: boolean;
}): void;
addPatch (modules: string | Array<string>, handler: string | PatchHandler): void;
removePatch (modules: string | Array<string>, handler: string | PatchHandler): void;
clearPatches (modules: string | Array<string>): void;
// Data collection hooks
middleware: { connect (): Connect.ErrorHandleFunction };
lambda (handler: AwsLambda.Handler): AwsLambda.Handler;
lambda (type: string, handler: AwsLambda.Handler): AwsLambda.Handler;
handleUncaughtExceptions (
fn?: (err: Error) => void
): void;
// Errors
captureError (
err: Error | string | ParameterizedMessageObject,
callback?: CaptureErrorCallback
): void;
captureError (
err: Error | string | ParameterizedMessageObject,
options?: CaptureErrorOptions,
callback?: CaptureErrorCallback
): void;
// Distributed Tracing
currentTraceparent: string | null;
currentTraceIds: {
'trace.id'?: string;
'transaction.id'?: string;
'span.id'?: string;
}
// Transactions
startTransaction(
name?: string | null,
options?: TransactionOptions
): Transaction;
startTransaction(
name: string | null,
type: string | null,
options?: TransactionOptions
): Transaction;
setTransactionName (name: string): void;
endTransaction (result?: string | number, endTime?: number): void;
currentTransaction: Transaction | null;
// Spans
startSpan(
name?: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
subtype: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
subtype: string | null,
action: string | null,
options?: SpanOptions
): Span | null;
currentSpan: Span | null;
// Context
setGlobalLabel (name: string, value: LabelValue): void;
setLabel (name: string, value: LabelValue, stringify?: boolean): boolean;
addLabels (labels: Labels, stringify?: boolean): boolean;
setUserContext (user: UserObject): void;
setCustomContext (custom: object): void;
// Transport
addFilter (fn: FilterFn): void;
addErrorFilter (fn: FilterFn): void;
addSpanFilter (fn: FilterFn): void;
addTransactionFilter (fn: FilterFn): void;
addMetadataFilter (fn: FilterFn): void;
flush (): Promise<void>;
flush (callback?: Function): void;
destroy (): Promise<void>;
// Utils
logger: Logger;
// Custom metrics
registerMetric(name: string, callback: Function): void;
registerMetric(name: string, labels: Labels, callback: Function): void;
setTransactionOutcome(outcome: Outcome): void;
setSpanOutcome(outcome: Outcome): void;
}
type Outcome = 'unknown' | 'success' | 'failure';
// Transaction API
// https://www.elastic.co/guide/en/apm/agent/nodejs/current/transaction-api.html
export interface Transaction {
// The following properties and methods are currently not documented as their API isn't considered official:
// - timestamp, ended, id, traceId, parentId, sampled, duration()
// - setUserContext(), setCustomContext(), toJSON(), setDefaultName(), setDefaultNameFromRequest()
name: string;
type: string | null;
traceparent: string;
outcome: Outcome;
result: string | number;
ids: {
'trace.id': string;
'transaction.id': string;
}
setType (type?: string | null): void;
setLabel (name: string, value: LabelValue, stringify?: boolean): boolean;
addLabels (labels: Labels, stringify?: boolean): boolean;
setOutcome(outcome: Outcome): void;
addLink (link: Link): void;
addLinks (links: Link[]): void;
startSpan(
name?: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
subtype: string | null,
options?: SpanOptions
): Span | null;
startSpan(
name: string | null,
type: string | null,
subtype: string | null,
action: string | null,
options?: SpanOptions
): Span | null;
ensureParentId (): string;
end (result?: string | number | null, endTime?: number): void;
}
// Span API
// https://www.elastic.co/guide/en/apm/agent/nodejs/current/span-api.html
export interface Span {
// The following properties and methods are currently not documented as their API isn't considered official:
// - timestamp, ended, id, traceId, parentId, sampled, duration()
// - customStackTrace(), setDbContext()
transaction: Transaction;
name: string;
type: string | null;
subtype: string | null;
action: string | null;
traceparent: string;
outcome: Outcome;
ids: {
'trace.id': string;
'span.id': string;
}
setType (type?: string | null, subtype?: string | null, action?: string | null): void;
setLabel (name: string, value: LabelValue, stringify?: boolean): boolean;
addLabels (labels: Labels, stringify?: boolean): boolean;
setOutcome(outcome: Outcome): void;
setServiceTarget(type?: string | null, name?: string | null): void;
addLink (link: Link): void;
addLinks (links: Link[]): void;
end (endTime?: number): void;
}
// https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html
export interface AgentConfigOptions {
abortedErrorThreshold?: string; // Also support `number`, but as we're removing this functionality soon, there's no need to advertise it
active?: boolean;
addPatch?: KeyValueConfig;
apiKey?: string;
apiRequestSize?: string; // Also support `number`, but as we're removing this functionality soon, there's no need to advertise it
apiRequestTime?: string; // Also support `number`, but as we're removing this functionality soon, there's no need to advertise it
breakdownMetrics?: boolean;
captureBody?: CaptureBody;
captureErrorLogStackTraces?: CaptureErrorLogStackTraces;
captureExceptions?: boolean;
captureHeaders?: boolean;
/**
* @deprecated Use `spanStackTraceMinDuration`.
*/
captureSpanStackTraces?: boolean;
centralConfig?: boolean;
cloudProvider?: string;
configFile?: string;
containerId?: string;
contextManager?: string;
contextPropagationOnly?: boolean;
disableInstrumentations?: string | string[];
disableSend?: boolean;
elasticsearchCaptureBodyUrls?: Array<string>;
environment?: string;
/**
* @deprecated Use `longFieldMaxLength`
*/
errorMessageMaxLength?: string;
errorOnAbortedRequests?: boolean;
exitSpanMinDuration?: string;
frameworkName?: string;
frameworkVersion?: string;
globalLabels?: KeyValueConfig;
hostname?: string;
ignoreMessageQueues?: Array<string>;
ignoreUrls?: Array<string | RegExp>;
ignoreUserAgents?: Array<string | RegExp>;
instrument?: boolean;
instrumentIncomingHTTPRequests?: boolean;
kubernetesNamespace?: string;
kubernetesNodeName?: string;
kubernetesPodName?: string;
kubernetesPodUID?: string;
logLevel?: LogLevel;
logger?: Logger; // Notably this Logger interface matches the Pino Logger.
longFieldMaxLength?: number;
maxQueueSize?: number;
metricsInterval?: string; // Also support `number`, but as we're removing this functionality soon, there's no need to advertise it
metricsLimit?: number;
opentelemetryBridgeEnabled?: boolean;
payloadLogFile?: string;
sanitizeFieldNames?: Array<string>;
secretToken?: string;
serverCaCertFile?: string;
serverTimeout?: string; // Also support `number`, but as we're removing this functionality soon, there's no need to advertise it
serverUrl?: string;
serviceName?: string;
serviceNodeName?: string;
serviceVersion?: string;
sourceLinesErrorAppFrames?: number;
sourceLinesErrorLibraryFrames?: number;
sourceLinesSpanAppFrames?: number;
sourceLinesSpanLibraryFrames?: number;
spanCompressionEnabled?: boolean;
spanCompressionExactMatchMaxDuration?: string;
spanCompressionSameKindMaxDuration?: string;
/**
* @deprecated Use `spanStackTraceMinDuration`.
*/
spanFramesMinDuration?: string;
spanStackTraceMinDuration?: string;
stackTraceLimit?: number;
traceContinuationStrategy?: TraceContinuationStrategy;
transactionIgnoreUrls?: Array<string>;
transactionMaxSpans?: number;
transactionSampleRate?: number;
useElasticTraceparentHeader?: boolean;
usePathAsTransactionName?: boolean;
verifyServerCert?: boolean;
}
interface CaptureErrorOptions {
request?: IncomingMessage;
response?: ServerResponse;
timestamp?: number;
handled?: boolean;
user?: UserObject;
labels?: Labels;
tags?: Labels;
custom?: object;
message?: string;
captureAttributes?: boolean;
skipOutcome?: boolean;
/**
* A Transaction or Span instance to make the parent of this error. If not
* given (undefined), then the current span or transaction will be used. If
* `null` is given, then no span or transaction will be used.
*/
parent?: Transaction | Span | null;
}
interface Labels {
[key: string]: LabelValue;
}
interface UserObject {
id?: string | number;
username?: string;
email?: string;
}
interface ParameterizedMessageObject {
message: string;
params: Array<any>;
}
interface Logger {
// Defining overloaded methods rather than a separate `interface LogFn`
// as @types/pino does, because the IDE completion shows these as *methods*
// rather than as properties, which is slightly nicer.
fatal (msg: string, ...args: any[]): void;
fatal (obj: {}, msg?: string, ...args: any[]): void;
error (msg: string, ...args: any[]): void;
error (obj: {}, msg?: string, ...args: any[]): void;
warn (msg: string, ...args: any[]): void;
warn (obj: {}, msg?: string, ...args: any[]): void;
info (msg: string, ...args: any[]): void;
info (obj: {}, msg?: string, ...args: any[]): void;
debug (msg: string, ...args: any[]): void;
debug (obj: {}, msg?: string, ...args: any[]): void;
trace (msg: string, ...args: any[]): void;
trace (obj: {}, msg?: string, ...args: any[]): void;
// Allow a passed in Logger that has other properties, as a Pino logger
// does. Discussion:
// https://github.com/elastic/apm-agent-nodejs/pull/926/files#r266239656
[propName: string]: any;
}
// Link and `links` are intended to be compatible with OTel's
// equivalent APIs in "opentelemetry-js-api/src/trace/link.ts". Currently
// span link attributes are not supported.
export interface Link {
/** A W3C trace-context 'traceparent' string, Transaction, Span, or OTel SpanContext. */
context: Transaction | Span | {traceId: string, spanId: string} | string;
}
export interface TransactionOptions {
startTime?: number;
// `childOf` is a W3C trace-context 'traceparent' string. Passing a
// Transaction or Span is deprecated.
childOf?: Transaction | Span | string;
tracestate?: string; // A W3C trace-context 'tracestate' string.
links?: Link[];
}
export interface SpanOptions {
startTime?: number;
childOf?: Transaction | Span | string;
exitSpan?: boolean;
links?: Link[];
}
type CaptureBody = 'off' | 'errors' | 'transactions' | 'all';
type CaptureErrorLogStackTraces = 'never' | 'messages' | 'always';
type LogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'warning' | 'error' | 'fatal' | 'critical' | 'off';
type TraceContinuationStrategy = 'continue' | 'restart' | 'restart_external';
type CaptureErrorCallback = (err: Error | null, id: string) => void;
type FilterFn = (payload: Payload) => Payload | boolean | void;
type LabelValue = string | number | boolean | null | undefined;
type KeyValueConfig = string | Labels | Array<Array<LabelValue>>
type Payload = { [propName: string]: any }
type PatchHandler = (exports: any, agent: Agent, options: PatchOptions) => any;
interface PatchOptions {
name: string;
version: string | undefined;
enabled: boolean;
}
}
declare const apm: apm.Agent;
export = apm;