arvo-core 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,12 +9,51 @@ export declare class ArvoOpenTelemetry {
|
|
9
9
|
private static instance;
|
10
10
|
private constructor();
|
11
11
|
/**
|
12
|
-
* Gets the instance of ArvoOpenTelemetry
|
13
|
-
*
|
12
|
+
* Gets or creates the singleton instance of ArvoOpenTelemetry.
|
13
|
+
* This method ensures only one instance of ArvoOpenTelemetry exists throughout the application.
|
14
|
+
*
|
15
|
+
* @param {Object} [config] - Optional configuration object for initializing the instance
|
16
|
+
* @param {Tracer} [config.tracer] - Optional custom OpenTelemetry tracer instance.
|
17
|
+
* If not provided, defaults to a tracer with name 'arvo-instrumentation'
|
18
|
+
*
|
19
|
+
* @returns {ArvoOpenTelemetry} The singleton instance of ArvoOpenTelemetry
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
* // Get instance with default tracer
|
23
|
+
* const telemetry = ArvoOpenTelemetry.getInstance();
|
24
|
+
*
|
25
|
+
* @example
|
26
|
+
* // Get instance with custom tracer
|
27
|
+
* const customTracer = trace.getTracer('custom-tracer', '2.0.0');
|
28
|
+
* const telemetry = ArvoOpenTelemetry.getInstance({ tracer: customTracer });
|
29
|
+
*
|
30
|
+
* @remarks
|
31
|
+
* The tracer configuration is only applied when creating a new instance.
|
32
|
+
* Subsequent calls with different tracer configurations will not modify the existing instance.
|
14
33
|
*/
|
15
34
|
static getInstance(config?: {
|
16
35
|
tracer?: Tracer;
|
17
36
|
}): ArvoOpenTelemetry;
|
37
|
+
/**
|
38
|
+
* Forces a reinitialization of the ArvoOpenTelemetry instance.
|
39
|
+
* Use this method with caution as it will affect all existing traces and spans.
|
40
|
+
*
|
41
|
+
* @param {Object} config - Configuration object for reinitializing the instance
|
42
|
+
* @param {Tracer} [config.tracer] - Optional custom OpenTelemetry tracer instance
|
43
|
+
* @param {boolean} [config.force=false] - If true, skips active span checks
|
44
|
+
*
|
45
|
+
* @throws {Error} If there are active spans and force is not set to true
|
46
|
+
* @throws {Error} If called before instance initialization
|
47
|
+
*
|
48
|
+
* @example
|
49
|
+
* // Safe reinitialization
|
50
|
+
* const customTracer = trace.getTracer('new-tracer', '2.0.0');
|
51
|
+
* ArvoOpenTelemetry.reinitialize({ tracer: customTracer });
|
52
|
+
*/
|
53
|
+
static reinitialize(config: {
|
54
|
+
tracer?: Tracer;
|
55
|
+
force?: boolean;
|
56
|
+
}): void;
|
18
57
|
/**
|
19
58
|
* Creates and manages an active span for a given operation. This function provides two modes of operation:
|
20
59
|
* 1. Automatic span management (default): Handles span lifecycle, status, and error recording
|
@@ -39,8 +39,27 @@ var ArvoOpenTelemetry = /** @class */ (function () {
|
|
39
39
|
this.tracer = tracer !== null && tracer !== void 0 ? tracer : api_1.trace.getTracer('arvo-instrumentation', '1.0.0');
|
40
40
|
}
|
41
41
|
/**
|
42
|
-
* Gets the instance of ArvoOpenTelemetry
|
43
|
-
*
|
42
|
+
* Gets or creates the singleton instance of ArvoOpenTelemetry.
|
43
|
+
* This method ensures only one instance of ArvoOpenTelemetry exists throughout the application.
|
44
|
+
*
|
45
|
+
* @param {Object} [config] - Optional configuration object for initializing the instance
|
46
|
+
* @param {Tracer} [config.tracer] - Optional custom OpenTelemetry tracer instance.
|
47
|
+
* If not provided, defaults to a tracer with name 'arvo-instrumentation'
|
48
|
+
*
|
49
|
+
* @returns {ArvoOpenTelemetry} The singleton instance of ArvoOpenTelemetry
|
50
|
+
*
|
51
|
+
* @example
|
52
|
+
* // Get instance with default tracer
|
53
|
+
* const telemetry = ArvoOpenTelemetry.getInstance();
|
54
|
+
*
|
55
|
+
* @example
|
56
|
+
* // Get instance with custom tracer
|
57
|
+
* const customTracer = trace.getTracer('custom-tracer', '2.0.0');
|
58
|
+
* const telemetry = ArvoOpenTelemetry.getInstance({ tracer: customTracer });
|
59
|
+
*
|
60
|
+
* @remarks
|
61
|
+
* The tracer configuration is only applied when creating a new instance.
|
62
|
+
* Subsequent calls with different tracer configurations will not modify the existing instance.
|
44
63
|
*/
|
45
64
|
ArvoOpenTelemetry.getInstance = function (config) {
|
46
65
|
if (ArvoOpenTelemetry.instance === null) {
|
@@ -48,6 +67,37 @@ var ArvoOpenTelemetry = /** @class */ (function () {
|
|
48
67
|
}
|
49
68
|
return ArvoOpenTelemetry.instance;
|
50
69
|
};
|
70
|
+
/**
|
71
|
+
* Forces a reinitialization of the ArvoOpenTelemetry instance.
|
72
|
+
* Use this method with caution as it will affect all existing traces and spans.
|
73
|
+
*
|
74
|
+
* @param {Object} config - Configuration object for reinitializing the instance
|
75
|
+
* @param {Tracer} [config.tracer] - Optional custom OpenTelemetry tracer instance
|
76
|
+
* @param {boolean} [config.force=false] - If true, skips active span checks
|
77
|
+
*
|
78
|
+
* @throws {Error} If there are active spans and force is not set to true
|
79
|
+
* @throws {Error} If called before instance initialization
|
80
|
+
*
|
81
|
+
* @example
|
82
|
+
* // Safe reinitialization
|
83
|
+
* const customTracer = trace.getTracer('new-tracer', '2.0.0');
|
84
|
+
* ArvoOpenTelemetry.reinitialize({ tracer: customTracer });
|
85
|
+
*/
|
86
|
+
ArvoOpenTelemetry.reinitialize = function (config) {
|
87
|
+
if (!ArvoOpenTelemetry.instance) {
|
88
|
+
throw new Error('Cannot reinitialize before initialization. Call getInstance first.');
|
89
|
+
}
|
90
|
+
// Check for active spans unless force is true
|
91
|
+
if (!config.force) {
|
92
|
+
var activeSpan = api_1.trace.getActiveSpan();
|
93
|
+
if (activeSpan) {
|
94
|
+
throw new Error('Cannot reinitialize while spans are active. ' +
|
95
|
+
'Either end all spans or use force: true (not recommended)');
|
96
|
+
}
|
97
|
+
}
|
98
|
+
// Create new instance
|
99
|
+
ArvoOpenTelemetry.instance = new ArvoOpenTelemetry(config.tracer);
|
100
|
+
};
|
51
101
|
/**
|
52
102
|
* Creates and manages an active span for a given operation. This function provides two modes of operation:
|
53
103
|
* 1. Automatic span management (default): Handles span lifecycle, status, and error recording
|