-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypescript_example.ts
More file actions
574 lines (490 loc) · 14.2 KB
/
typescript_example.ts
File metadata and controls
574 lines (490 loc) · 14.2 KB
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
/**
* Bugsink/Sentry SDK Integration Example for TypeScript
* ======================================================
*
* This example demonstrates comprehensive error tracking integration
* using the Sentry SDK with a self-hosted Bugsink server.
*
* Requirements:
* npm install @sentry/node @sentry/profiling-node express
* npm install -D typescript @types/node @types/express
*
* DSN Format:
* https://<project-key>@<your-bugsink-host>/<project-id>
*/
import * as Sentry from "@sentry/node";
import { nodeProfilingIntegration } from "@sentry/profiling-node";
import type { Event, EventHint, Breadcrumb, BreadcrumbHint } from "@sentry/types";
import * as os from "os";
// =============================================================================
// TYPE DEFINITIONS
// =============================================================================
interface UserContext {
id: string;
email?: string;
username?: string;
ipAddress?: string;
[key: string]: unknown;
}
interface SentryConfig {
dsn: string;
environment: string;
release: string;
serverName: string;
debug?: boolean;
}
type SeverityLevel = "debug" | "info" | "warning" | "error" | "fatal";
interface BreadcrumbOptions {
message: string;
category?: string;
level?: SeverityLevel;
data?: Record<string, unknown>;
}
interface TransactionOptions {
name: string;
op?: string;
description?: string;
}
// =============================================================================
// CONFIGURATION
// =============================================================================
const SENTRY_DSN: string =
process.env.SENTRY_DSN ||
"https://your-project-key@errors.observability.app.bauer-group.com/1";
const ENVIRONMENT: string = process.env.NODE_ENV || "development";
const RELEASE: string = process.env.APP_VERSION || "1.0.0";
const SERVER_NAME: string = process.env.HOSTNAME || os.hostname();
// =============================================================================
// SENTRY SERVICE CLASS
// =============================================================================
/**
* Singleton service for Sentry integration.
* Provides type-safe methods for error tracking and monitoring.
*/
class SentryService {
private static instance: SentryService;
private initialized: boolean = false;
private constructor() {}
/**
* Get the singleton instance.
*/
static getInstance(): SentryService {
if (!SentryService.instance) {
SentryService.instance = new SentryService();
}
return SentryService.instance;
}
/**
* Initialize Sentry with configuration.
*/
init(config?: Partial<SentryConfig>): void {
if (this.initialized) {
console.warn("Sentry already initialized");
return;
}
const finalConfig: SentryConfig = {
dsn: config?.dsn || SENTRY_DSN,
environment: config?.environment || ENVIRONMENT,
release: config?.release || `my-app@${RELEASE}`,
serverName: config?.serverName || SERVER_NAME,
debug: config?.debug ?? ENVIRONMENT === "development",
};
Sentry.init({
dsn: finalConfig.dsn,
environment: finalConfig.environment,
release: finalConfig.release,
serverName: finalConfig.serverName,
integrations: [nodeProfilingIntegration()],
// Performance Monitoring
tracesSampleRate: finalConfig.environment === "production" ? 0.1 : 1.0,
profilesSampleRate: 0.1,
// Error Sampling
sampleRate: 1.0,
// Data Handling
sendDefaultPii: false,
maxBreadcrumbs: 50,
attachStacktrace: true,
// Hooks
beforeSend: this.beforeSendHandler.bind(this),
beforeBreadcrumb: this.beforeBreadcrumbHandler.bind(this),
debug: finalConfig.debug,
});
// Set global tags
Sentry.setTag("app.component", "backend");
Sentry.setTag("app.runtime", "nodejs");
Sentry.setTag("app.language", "typescript");
this.initialized = true;
console.log(`Sentry initialized for environment: ${finalConfig.environment}`);
}
/**
* Process events before sending.
*/
private beforeSendHandler(event: Event, hint: EventHint): Event | null {
// Sanitize sensitive headers
if (event.request?.headers) {
const sensitiveHeaders = ["authorization", "cookie", "x-api-key"];
sensitiveHeaders.forEach((header) => {
if (event.request!.headers![header]) {
event.request!.headers![header] = "[REDACTED]";
}
});
}
// Filter specific exceptions
const exception = hint.originalException as Error | undefined;
if (exception?.name === "ExpectedBusinessError") {
return null;
}
return event;
}
/**
* Process breadcrumbs before adding.
*/
private beforeBreadcrumbHandler(
breadcrumb: Breadcrumb,
hint?: BreadcrumbHint
): Breadcrumb | null {
// Filter health check requests
if (
breadcrumb.category === "http" &&
breadcrumb.data?.url?.toString().includes("/health")
) {
return null;
}
return breadcrumb;
}
/**
* Set user context.
*/
setUser(user: UserContext | null): void {
if (user) {
Sentry.setUser({
id: user.id,
email: user.email,
username: user.username,
ip_address: user.ipAddress,
});
} else {
Sentry.setUser(null);
}
}
/**
* Add a breadcrumb.
*/
addBreadcrumb(options: BreadcrumbOptions): void {
Sentry.addBreadcrumb({
message: options.message,
category: options.category || "custom",
level: options.level || "info",
data: options.data,
timestamp: Date.now() / 1000,
});
}
/**
* Set custom context.
*/
setContext(name: string, context: Record<string, unknown>): void {
Sentry.setContext(name, context);
}
/**
* Set a tag.
*/
setTag(key: string, value: string): void {
Sentry.setTag(key, value);
}
/**
* Capture an exception.
*/
captureException(
error: Error,
context?: Record<string, unknown>
): string | undefined {
return Sentry.withScope((scope) => {
if (context) {
Object.entries(context).forEach(([key, value]) => {
scope.setExtra(key, value);
});
}
return Sentry.captureException(error);
});
}
/**
* Capture a message.
*/
captureMessage(
message: string,
level: SeverityLevel = "info",
context?: Record<string, unknown>
): string | undefined {
return Sentry.withScope((scope) => {
if (context) {
Object.entries(context).forEach(([key, value]) => {
scope.setExtra(key, value);
});
}
return Sentry.captureMessage(message, level);
});
}
/**
* Start a transaction/span.
*/
async startSpan<T>(
options: TransactionOptions,
callback: () => Promise<T> | T
): Promise<T> {
return Sentry.startSpan(
{
name: options.name,
op: options.op || "function",
},
async () => callback()
);
}
/**
* Execute callback within a scope.
*/
withScope<T>(callback: (scope: Sentry.Scope) => T): T {
return Sentry.withScope(callback);
}
/**
* Flush pending events.
*/
async flush(timeout: number = 5000): Promise<boolean> {
return Sentry.flush(timeout);
}
}
// =============================================================================
// DECORATORS
// =============================================================================
/**
* Method decorator for automatic error tracking.
*
* @example
* class UserService {
* @TrackErrors("fetch_user")
* async getUser(id: string): Promise<User> {
* // ...
* }
* }
*/
function TrackErrors(operationName: string) {
return function (
target: unknown,
propertyKey: string,
descriptor: PropertyDescriptor
) {
const originalMethod = descriptor.value;
descriptor.value = async function (...args: unknown[]) {
const sentry = SentryService.getInstance();
return Sentry.withScope(async (scope) => {
scope.setTag("operation", operationName);
scope.setExtra("method", propertyKey);
sentry.addBreadcrumb({
message: `Executing ${operationName}`,
category: "function",
level: "info",
});
try {
return await originalMethod.apply(this, args);
} catch (error) {
scope.setExtra("error_type", (error as Error).name);
throw error;
}
});
};
return descriptor;
};
}
/**
* Method decorator for performance transaction tracking.
*
* @example
* class OrderService {
* @Transaction("process_order", "task")
* async processOrder(orderId: string): Promise<void> {
* // ...
* }
* }
*/
function Transaction(name: string, op: string = "function") {
return function (
target: unknown,
propertyKey: string,
descriptor: PropertyDescriptor
) {
const originalMethod = descriptor.value;
descriptor.value = async function (...args: unknown[]) {
return Sentry.startSpan(
{
name,
op,
},
async (span) => {
try {
const result = await originalMethod.apply(this, args);
span.setStatus({ code: 1 }); // OK
return result;
} catch (error) {
span.setStatus({ code: 2, message: (error as Error).message });
throw error;
}
}
);
};
return descriptor;
};
}
// =============================================================================
// EXPRESS INTEGRATION
// =============================================================================
/**
* Create an Express app with Sentry integration (if Express is available).
*/
async function createExpressApp(): Promise<unknown | null> {
try {
const express = await import("express");
const app = express.default();
// Sentry handlers
app.use(Sentry.Handlers.requestHandler());
app.use(Sentry.Handlers.tracingHandler());
app.use(express.json());
// Routes
app.get("/", (req: express.Request, res: express.Response) => {
const sentry = SentryService.getInstance();
sentry.addBreadcrumb({ message: "Homepage visited", category: "navigation" });
res.json({ status: "ok" });
});
app.get("/api/error", () => {
throw new Error("Test error");
});
// Error handler
app.use(Sentry.Handlers.errorHandler());
app.use(
(
err: Error,
req: express.Request,
res: express.Response,
next: express.NextFunction
) => {
res.status(500).json({ error: err.message });
}
);
return app;
} catch {
console.log("Express not available");
return null;
}
}
// =============================================================================
// EXAMPLE SERVICE CLASS
// =============================================================================
class ExampleService {
private sentry: SentryService;
constructor() {
this.sentry = SentryService.getInstance();
}
@TrackErrors("fetch_data")
async fetchData(id: string): Promise<{ id: string; data: string }> {
this.sentry.addBreadcrumb({
message: `Fetching data for ${id}`,
category: "service",
data: { id },
});
if (id === "error") {
throw new Error("Failed to fetch data");
}
return { id, data: "Sample data" };
}
@Transaction("process_batch", "task")
async processBatch(items: string[]): Promise<number> {
let processed = 0;
for (const item of items) {
await Sentry.startSpan(
{ name: `process_item_${item}`, op: "task.item" },
async () => {
await this.sleep(50);
processed++;
}
);
}
return processed;
}
private sleep(ms: number): Promise<void> {
return new Promise((resolve) => setTimeout(resolve, ms));
}
}
// =============================================================================
// MAIN EXAMPLE
// =============================================================================
async function main(): Promise<void> {
console.log("=".repeat(60));
console.log("Bugsink/Sentry TypeScript SDK Integration Example");
console.log("=".repeat(60));
// Get Sentry instance and initialize
const sentry = SentryService.getInstance();
sentry.init();
// Set user context
sentry.setUser({
id: "user-123",
email: "developer@example.com",
username: "developer",
});
// Add breadcrumbs
sentry.addBreadcrumb({ message: "Application started", category: "app" });
sentry.addBreadcrumb({ message: "User authenticated", category: "auth" });
// Example 1: Capture handled exception
console.log("\n1. Capturing handled exception...");
try {
throw new Error("Test error");
} catch (error) {
const eventId = sentry.captureException(error as Error, {
operation: "test",
});
console.log(` Exception captured: ${eventId}`);
}
// Example 2: Capture message
console.log("\n2. Capturing info message...");
const messageId = sentry.captureMessage(
"User completed action",
"info",
{ action: "test" }
);
console.log(` Message captured: ${messageId}`);
// Example 3: Use decorated service
console.log("\n3. Using decorated service methods...");
const service = new ExampleService();
try {
const data = await service.fetchData("123");
console.log(` Data fetched: ${JSON.stringify(data)}`);
} catch (error) {
console.log(" Error handled");
}
// Example 4: Transaction with decorated method
console.log("\n4. Processing batch with transaction...");
const processed = await service.processBatch(["a", "b", "c"]);
console.log(` Processed ${processed} items`);
// Example 5: Manual span
console.log("\n5. Creating manual span...");
await sentry.startSpan({ name: "manual_operation", op: "custom" }, async () => {
await new Promise((r) => setTimeout(r, 100));
});
console.log(" Span completed");
// Clean up
sentry.setUser(null);
console.log("\n" + "=".repeat(60));
console.log("All examples completed!");
console.log("=".repeat(60));
await sentry.flush();
}
// Export for use as module
export {
SentryService,
TrackErrors,
Transaction,
createExpressApp,
UserContext,
SeverityLevel,
BreadcrumbOptions,
TransactionOptions,
};
// Run if executed directly
main().catch(console.error);