-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFastlySDK.ts
212 lines (177 loc) · 6.68 KB
/
FastlySDK.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
/*
* Copyright Fastly, Inc.
* Licensed under the MIT license. See LICENSE file for details.
*/
import { ContextManager, TextMapPropagator, metrics } from '@opentelemetry/api';
import { InstrumentationOption, registerInstrumentations } from '@opentelemetry/instrumentation';
import { Resource } from '@opentelemetry/resources';
import { BatchSpanProcessor, SpanProcessor } from '@opentelemetry/sdk-trace-base';
import { MeterProvider, MetricReader } from '@opentelemetry/sdk-metrics';
import { FastlySDKConfiguration } from './types.js';
import { FastlyTracerConfig, FastlyTracerProvider } from '../opentelemetry-sdk-trace-fastly/index.js';
import { setPatchTarget } from './util.js';
type TransformConfigurationFunction = (configuration: Partial<FastlySDKConfiguration>, event: FetchEvent) => Partial<FastlySDKConfiguration>;
export class FastlySDK {
private _resource: Resource;
private _tracerProviderConfig?: {
tracerConfig: FastlyTracerConfig;
spanProcessor: SpanProcessor;
contextManager?: ContextManager;
textMapPropagator?: TextMapPropagator;
};
private _tracerProvider?: FastlyTracerProvider;
private _metricReader?: MetricReader;
private _meterProvider?: MeterProvider;
private _instrumentations: InstrumentationOption[];
/** a copy of the configuration object passed to the constructor. */
private _configuration: Partial<FastlySDKConfiguration>;
/**
* @private
* An optional function that can be set, by passing it into the start() function.
* If this is set, then when a FetchEvent starts, this transform configuration will
* run against the saved configuration object, giving the application an opportunity
* to modify the configuration and start the SDK with the modified configuration.
*/
private _transformConfiguration?: TransformConfigurationFunction;
public constructor(configuration: Partial<FastlySDKConfiguration> = {}) {
this._configuration = configuration;
this._resource = new Resource({});
this._instrumentations = [];
this._initConfiguration(this._configuration);
}
/**
* @private
* Apply the initial configuration that is set during the constructor, or,
* if a transform configuration is passed to the start() function, after it is
* called in response to the start of a FetchEvent.
*/
private _initConfiguration(configuration: Partial<FastlySDKConfiguration>) {
this._resource = configuration.resource ?? new Resource({});
if (configuration.spanProcessor || configuration.traceExporter) {
const tracerProviderConfig: FastlyTracerConfig = {};
if (configuration.sampler) {
tracerProviderConfig.sampler = configuration.sampler;
}
if (configuration.spanLimits) {
tracerProviderConfig.spanLimits = configuration.spanLimits;
}
const spanProcessor =
configuration.spanProcessor ??
new BatchSpanProcessor(configuration.traceExporter!);
this.configureTracerProvider(
tracerProviderConfig,
spanProcessor,
configuration.contextManager,
configuration.textMapPropagator,
);
}
if (configuration.metricReader) {
this.configureMeterProvider(configuration.metricReader);
}
let instrumentations: InstrumentationOption[] = [];
if (configuration.instrumentations) {
instrumentations = configuration.instrumentations;
}
this._instrumentations = instrumentations;
}
/** Set configurations required to register a FastlyTracerProvider */
public configureTracerProvider(
tracerConfig: FastlyTracerConfig,
spanProcessor: SpanProcessor,
contextManager?: ContextManager,
textMapPropagator?: TextMapPropagator,
): void {
this._tracerProviderConfig = {
tracerConfig,
spanProcessor,
contextManager,
textMapPropagator,
};
}
/** Set configurations needed to register a MeterProvider */
public configureMeterProvider(reader: MetricReader): void {
this._metricReader = reader;
}
/** Manually add a resource */
public addResource(resource: Resource): void {
this._resource = this._resource.merge(resource);
}
/**
* @private
* Apply the various configurations that have been set up by _initConfiguration(),
* which has been called either by the constructor or in response to the FetchEvent.
*/
private _applyConfiguration() {
if (this._tracerProviderConfig) {
const tracerProvider = new FastlyTracerProvider({
...this._tracerProviderConfig.tracerConfig,
resource: this._resource,
});
this._tracerProvider = tracerProvider;
tracerProvider.addSpanProcessor(this._tracerProviderConfig.spanProcessor);
tracerProvider.register({
contextManager: this._tracerProviderConfig.contextManager,
propagator: this._tracerProviderConfig.textMapPropagator,
});
}
if (this._metricReader) {
const meterProvider = new MeterProvider({
resource: this._resource,
});
meterProvider.addMetricReader(this._metricReader);
this._meterProvider = meterProvider;
metrics.setGlobalMeterProvider(meterProvider);
}
registerInstrumentations({
instrumentations: this._instrumentations,
});
}
/**
* Start the SDK by applying the configuration.
* This function can be called with an optional transform configuration function.
* If it is, then the remaining steps of applying the configuration are deferred until
* event start.
* @param transform
*/
async start(transform?: TransformConfigurationFunction) {
setPatchTarget(this);
if(transform != null) {
this._transformConfiguration = transform;
} else {
this._applyConfiguration();
}
}
/**
* Shut down the SDK. Returns a promise that settles when the components have
* finished shutting down.
*/
public shutdown(): Promise<void> {
const promises: Promise<unknown>[] = [];
if (this._tracerProvider) {
promises.push(this._tracerProvider.shutdown());
}
if (this._meterProvider) {
promises.push(this._meterProvider.shutdown());
}
return (
Promise.all(promises)
// return void instead of the array from Promise.all
.then(() => {
})
);
}
/**
* When the FetchEvent happens, check if start() had been called with a transform
* function. If so, then perform the transform and apply all of the configuration
* at this point.
* @param event
*/
public onEventStart(event: FetchEvent) {
if(this._transformConfiguration != null) {
this._configuration = this._transformConfiguration(this._configuration, event);
this._tracerProviderConfig = undefined;
this._initConfiguration(this._configuration);
this._applyConfiguration();
}
}
}