@siddharatha/adapter-node-rolldown 1.0.0
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.
- package/LICENSE +21 -0
- package/README.md +581 -0
- package/files/env.js +50 -0
- package/files/handler.js +16 -0
- package/files/index.js +217 -0
- package/files/middlewares.js +162 -0
- package/files/shims.js +6 -0
- package/files/telemetry.js +126 -0
- package/index.d.ts +125 -0
- package/index.js +232 -0
- package/package.json +55 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 SvelteKit Adapter Node Rolldown Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,581 @@
|
|
|
1
|
+
# @sveltejs/adapter-node-rolldown
|
|
2
|
+
|
|
3
|
+
High-performance SvelteKit adapter for Node.js with Polka, WebSocket support, OpenTelemetry tracing, and optimizations for ECS/Kubernetes deployments.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🚀 **Ultra-fast**: Uses [Polka](https://github.com/lukeed/polka) (~30x faster than Express)
|
|
8
|
+
- � **Bundled**: Uses Rollup to bundle server code (only production deps needed)
|
|
9
|
+
- 🔧 **Instrumentation**: Full support for SvelteKit's instrumentation API
|
|
10
|
+
- �🗜️ **Smart compression**: Gzip/Brotli with pre-compression support
|
|
11
|
+
- 🔌 **WebSocket support**: Built-in WebSocket server with `ws`
|
|
12
|
+
- 📊 **OpenTelemetry**: Full distributed tracing with Dynatrace integration
|
|
13
|
+
- 🏥 **Health checks**: `/health` and `/readiness` endpoints for K8s
|
|
14
|
+
- 🔄 **Graceful shutdown**: Proper SIGTERM handling for zero-downtime deployments
|
|
15
|
+
- 📦 **High body limits**: Configurable request size limits (default 10MB)
|
|
16
|
+
- 🎯 **Container-ready**: Optimized for Docker, ECS, and Kubernetes
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install @sveltejs/adapter-node-rolldown
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
In your `svelte.config.js`:
|
|
27
|
+
|
|
28
|
+
```javascript
|
|
29
|
+
import adapter from '@sveltejs/adapter-node-rolldown';
|
|
30
|
+
|
|
31
|
+
export default {
|
|
32
|
+
kit: {
|
|
33
|
+
adapter: adapter({
|
|
34
|
+
// All options are optional with sensible defaults
|
|
35
|
+
out: 'build',
|
|
36
|
+
precompress: true,
|
|
37
|
+
compression: true,
|
|
38
|
+
compressionLevel: 6,
|
|
39
|
+
bodyLimit: '10mb',
|
|
40
|
+
websocket: true,
|
|
41
|
+
websocketPath: '/ws',
|
|
42
|
+
telemetry: true,
|
|
43
|
+
telemetrySampleRate: 1.0,
|
|
44
|
+
healthCheck: true,
|
|
45
|
+
gracefulShutdownTimeout: 30000,
|
|
46
|
+
|
|
47
|
+
// 🆕 Rolldown bundling options
|
|
48
|
+
external: ['polka', 'sirv', 'compression', 'ws'], // Keep these external
|
|
49
|
+
// OR use a function:
|
|
50
|
+
// external: (pkg) => Object.keys(pkg.dependencies || {}),
|
|
51
|
+
bundleAll: false, // true = bundle everything (no node_modules at runtime)
|
|
52
|
+
rolldownOptions: {} // Additional rolldown config
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Configuration Options
|
|
59
|
+
|
|
60
|
+
### Basic Options
|
|
61
|
+
|
|
62
|
+
| Option | Type | Default | Description |
|
|
63
|
+
|--------|------|---------|-------------|
|
|
64
|
+
| `out` | `string` | `'build'` | Output directory for the build |
|
|
65
|
+
| `precompress` | `boolean` | `true` | Pre-compress static assets with gzip and brotli |
|
|
66
|
+
| `envPrefix` | `string` | `''` | Prefix for environment variables |
|
|
67
|
+
|
|
68
|
+
### Performance Options
|
|
69
|
+
|
|
70
|
+
| Option | Type | Default | Description |
|
|
71
|
+
|--------|------|---------|-------------|
|
|
72
|
+
| `compression` | `boolean` | `true` | Enable runtime compression middleware |
|
|
73
|
+
| `compressionLevel` | `number` | `6` | Compression level (1-9) |
|
|
74
|
+
| `bodyLimit` | `string\|number` | `'10mb'` | Maximum request body size |
|
|
75
|
+
|
|
76
|
+
### WebSocket Options
|
|
77
|
+
|
|
78
|
+
| Option | Type | Default | Description |
|
|
79
|
+
|--------|------|---------|-------------|
|
|
80
|
+
| `websocket` | `boolean` | `true` | Enable WebSocket support |
|
|
81
|
+
| `websocketPath` | `string` | `'/ws'` | WebSocket endpoint path |
|
|
82
|
+
|
|
83
|
+
### OpenTelemetry Options
|
|
84
|
+
|
|
85
|
+
| Option | Type | Default | Description |
|
|
86
|
+
|--------|------|---------|-------------|
|
|
87
|
+
| `telemetry` | `boolean` | `true` | Enable OpenTelemetry tracing |
|
|
88
|
+
| `telemetrySampleRate` | `number` | `1.0` | Sampling rate (0.0-1.0) |
|
|
89
|
+
| `telemetryConfig` | `object` | `{}` | Additional telemetry configuration |
|
|
90
|
+
|
|
91
|
+
### Container Options
|
|
92
|
+
|
|
93
|
+
| Option | Type | Default | Description |
|
|
94
|
+
|--------|------|---------|-------------|
|
|
95
|
+
| `healthCheck` | `boolean` | `true` | Enable health check endpoints |
|
|
96
|
+
| `gracefulShutdownTimeout` | `number` | `30000` | Graceful shutdown timeout (ms) |
|
|
97
|
+
| `polyfill` | `boolean` | `true` | Inject global polyfills |
|
|
98
|
+
|
|
99
|
+
### Bundling Options 🆕
|
|
100
|
+
|
|
101
|
+
| Option | Type | Default | Description |
|
|
102
|
+
|--------|------|---------|-------------|
|
|
103
|
+
| `external` | `string[]` or `function` | `undefined` | Packages to exclude from bundle (see examples below) |
|
|
104
|
+
| `bundleAll` | `boolean` | `false` | Bundle everything including dependencies |
|
|
105
|
+
| `rolldownOptions` | `object` | `{}` | Additional Rolldown configuration |
|
|
106
|
+
|
|
107
|
+
#### External Package Examples
|
|
108
|
+
|
|
109
|
+
**Array of packages:**
|
|
110
|
+
```javascript
|
|
111
|
+
adapter({
|
|
112
|
+
external: ['polka', 'sirv', 'compression', 'ws']
|
|
113
|
+
})
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
**Function with custom logic:**
|
|
117
|
+
```javascript
|
|
118
|
+
adapter({
|
|
119
|
+
external: (pkg) => {
|
|
120
|
+
// Keep runtime packages external
|
|
121
|
+
const runtime = ['polka', 'sirv', 'compression', 'ws'];
|
|
122
|
+
// Bundle OpenTelemetry to avoid version conflicts
|
|
123
|
+
return runtime;
|
|
124
|
+
}
|
|
125
|
+
})
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
**Bundle everything (no externals):**
|
|
129
|
+
```javascript
|
|
130
|
+
adapter({
|
|
131
|
+
bundleAll: true // Zero node_modules at runtime
|
|
132
|
+
})
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**Default (uses package.json dependencies):**
|
|
136
|
+
```javascript
|
|
137
|
+
adapter({
|
|
138
|
+
// No external option = uses package.json dependencies
|
|
139
|
+
})
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## Environment Variables
|
|
143
|
+
|
|
144
|
+
### Server Configuration
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
# Server binding
|
|
148
|
+
PORT=3000
|
|
149
|
+
HOST=0.0.0.0
|
|
150
|
+
|
|
151
|
+
# Performance tuning
|
|
152
|
+
KEEP_ALIVE_TIMEOUT=65000
|
|
153
|
+
HEADERS_TIMEOUT=66000
|
|
154
|
+
MAX_REQUESTS_PER_SOCKET=0
|
|
155
|
+
|
|
156
|
+
# Trust proxy headers (if behind load balancer)
|
|
157
|
+
TRUST_PROXY=true
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### OpenTelemetry Configuration
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# Enable/disable telemetry at runtime
|
|
164
|
+
OTEL_ENABLED=true
|
|
165
|
+
|
|
166
|
+
# Service identification
|
|
167
|
+
OTEL_SERVICE_NAME=my-sveltekit-app
|
|
168
|
+
OTEL_SERVICE_VERSION=1.0.0
|
|
169
|
+
|
|
170
|
+
# Exporter configuration
|
|
171
|
+
OTEL_EXPORTER_OTLP_ENDPOINT=https://your-env.live.dynatrace.com/api/v2/otlp/v1/traces
|
|
172
|
+
OTEL_EXPORTER_OTLP_PROTOCOL=http # or 'grpc'
|
|
173
|
+
|
|
174
|
+
# Dynatrace API token (for authentication)
|
|
175
|
+
DYNATRACE_API_TOKEN=your-api-token-here
|
|
176
|
+
|
|
177
|
+
# Sampling rate (override adapter config)
|
|
178
|
+
OTEL_SAMPLE_RATE=1.0
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
### WebSocket Configuration
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
# Enable/disable at runtime
|
|
185
|
+
WEBSOCKET_ENABLED=true
|
|
186
|
+
WEBSOCKET_PATH=/ws
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
## Deployment
|
|
190
|
+
|
|
191
|
+
### Building
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
npm run build
|
|
195
|
+
cd build
|
|
196
|
+
npm install --omit=dev
|
|
197
|
+
node index.js
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
### Docker
|
|
201
|
+
|
|
202
|
+
Example `Dockerfile`:
|
|
203
|
+
|
|
204
|
+
```dockerfile
|
|
205
|
+
FROM node:20-alpine AS builder
|
|
206
|
+
WORKDIR /app
|
|
207
|
+
COPY package*.json ./
|
|
208
|
+
RUN npm ci
|
|
209
|
+
COPY . .
|
|
210
|
+
RUN npm run build
|
|
211
|
+
|
|
212
|
+
FROM node:20-alpine
|
|
213
|
+
WORKDIR /app
|
|
214
|
+
|
|
215
|
+
# Install only production dependencies
|
|
216
|
+
COPY --from=builder /app/build/package.json ./
|
|
217
|
+
RUN npm install --omit=dev
|
|
218
|
+
|
|
219
|
+
# Copy built application
|
|
220
|
+
COPY --from=builder /app/build ./
|
|
221
|
+
|
|
222
|
+
# Create non-root user
|
|
223
|
+
RUN addgroup -g 1001 -S nodejs && \
|
|
224
|
+
adduser -S nodejs -u 1001 && \
|
|
225
|
+
chown -R nodejs:nodejs /app
|
|
226
|
+
|
|
227
|
+
USER nodejs
|
|
228
|
+
|
|
229
|
+
# Health check
|
|
230
|
+
HEALTHCHECK --interval=30s --timeout=3s --start-period=40s \
|
|
231
|
+
CMD node -e "require('http').get('http://localhost:3000/health', (r) => process.exit(r.statusCode === 200 ? 0 : 1))"
|
|
232
|
+
|
|
233
|
+
EXPOSE 3000
|
|
234
|
+
|
|
235
|
+
CMD ["node", "index.js"]
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
Build and run:
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
docker build -t my-sveltekit-app .
|
|
242
|
+
docker run -p 3000:3000 \
|
|
243
|
+
-e OTEL_ENABLED=true \
|
|
244
|
+
-e OTEL_EXPORTER_OTLP_ENDPOINT=https://your-env.live.dynatrace.com/api/v2/otlp/v1/traces \
|
|
245
|
+
-e DYNATRACE_API_TOKEN=your-token \
|
|
246
|
+
my-sveltekit-app
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### Kubernetes
|
|
250
|
+
|
|
251
|
+
Example deployment manifest:
|
|
252
|
+
|
|
253
|
+
```yaml
|
|
254
|
+
apiVersion: apps/v1
|
|
255
|
+
kind: Deployment
|
|
256
|
+
metadata:
|
|
257
|
+
name: sveltekit-app
|
|
258
|
+
spec:
|
|
259
|
+
replicas: 3
|
|
260
|
+
selector:
|
|
261
|
+
matchLabels:
|
|
262
|
+
app: sveltekit-app
|
|
263
|
+
template:
|
|
264
|
+
metadata:
|
|
265
|
+
labels:
|
|
266
|
+
app: sveltekit-app
|
|
267
|
+
spec:
|
|
268
|
+
containers:
|
|
269
|
+
- name: app
|
|
270
|
+
image: my-sveltekit-app:latest
|
|
271
|
+
ports:
|
|
272
|
+
- containerPort: 3000
|
|
273
|
+
name: http
|
|
274
|
+
protocol: TCP
|
|
275
|
+
env:
|
|
276
|
+
- name: PORT
|
|
277
|
+
value: "3000"
|
|
278
|
+
- name: HOST
|
|
279
|
+
value: "0.0.0.0"
|
|
280
|
+
- name: OTEL_ENABLED
|
|
281
|
+
value: "true"
|
|
282
|
+
- name: OTEL_SERVICE_NAME
|
|
283
|
+
value: "sveltekit-app"
|
|
284
|
+
- name: OTEL_EXPORTER_OTLP_ENDPOINT
|
|
285
|
+
valueFrom:
|
|
286
|
+
secretKeyRef:
|
|
287
|
+
name: dynatrace-config
|
|
288
|
+
key: endpoint
|
|
289
|
+
- name: DYNATRACE_API_TOKEN
|
|
290
|
+
valueFrom:
|
|
291
|
+
secretKeyRef:
|
|
292
|
+
name: dynatrace-config
|
|
293
|
+
key: api-token
|
|
294
|
+
livenessProbe:
|
|
295
|
+
httpGet:
|
|
296
|
+
path: /health
|
|
297
|
+
port: 3000
|
|
298
|
+
initialDelaySeconds: 30
|
|
299
|
+
periodSeconds: 10
|
|
300
|
+
timeoutSeconds: 3
|
|
301
|
+
failureThreshold: 3
|
|
302
|
+
readinessProbe:
|
|
303
|
+
httpGet:
|
|
304
|
+
path: /readiness
|
|
305
|
+
port: 3000
|
|
306
|
+
initialDelaySeconds: 10
|
|
307
|
+
periodSeconds: 5
|
|
308
|
+
timeoutSeconds: 3
|
|
309
|
+
failureThreshold: 2
|
|
310
|
+
resources:
|
|
311
|
+
requests:
|
|
312
|
+
memory: "256Mi"
|
|
313
|
+
cpu: "250m"
|
|
314
|
+
limits:
|
|
315
|
+
memory: "512Mi"
|
|
316
|
+
cpu: "500m"
|
|
317
|
+
lifecycle:
|
|
318
|
+
preStop:
|
|
319
|
+
exec:
|
|
320
|
+
command: ["/bin/sh", "-c", "sleep 10"]
|
|
321
|
+
---
|
|
322
|
+
apiVersion: v1
|
|
323
|
+
kind: Service
|
|
324
|
+
metadata:
|
|
325
|
+
name: sveltekit-app
|
|
326
|
+
spec:
|
|
327
|
+
type: ClusterIP
|
|
328
|
+
ports:
|
|
329
|
+
- port: 80
|
|
330
|
+
targetPort: 3000
|
|
331
|
+
protocol: TCP
|
|
332
|
+
name: http
|
|
333
|
+
selector:
|
|
334
|
+
app: sveltekit-app
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
### ECS Task Definition
|
|
338
|
+
|
|
339
|
+
```json
|
|
340
|
+
{
|
|
341
|
+
"family": "sveltekit-app",
|
|
342
|
+
"networkMode": "awsvpc",
|
|
343
|
+
"requiresCompatibilities": ["FARGATE"],
|
|
344
|
+
"cpu": "512",
|
|
345
|
+
"memory": "1024",
|
|
346
|
+
"containerDefinitions": [
|
|
347
|
+
{
|
|
348
|
+
"name": "app",
|
|
349
|
+
"image": "my-sveltekit-app:latest",
|
|
350
|
+
"portMappings": [
|
|
351
|
+
{
|
|
352
|
+
"containerPort": 3000,
|
|
353
|
+
"protocol": "tcp"
|
|
354
|
+
}
|
|
355
|
+
],
|
|
356
|
+
"environment": [
|
|
357
|
+
{ "name": "PORT", "value": "3000" },
|
|
358
|
+
{ "name": "HOST", "value": "0.0.0.0" },
|
|
359
|
+
{ "name": "OTEL_ENABLED", "value": "true" },
|
|
360
|
+
{ "name": "OTEL_SERVICE_NAME", "value": "sveltekit-app" }
|
|
361
|
+
],
|
|
362
|
+
"secrets": [
|
|
363
|
+
{
|
|
364
|
+
"name": "DYNATRACE_API_TOKEN",
|
|
365
|
+
"valueFrom": "arn:aws:secretsmanager:region:account:secret:dynatrace-token"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "OTEL_EXPORTER_OTLP_ENDPOINT",
|
|
369
|
+
"valueFrom": "arn:aws:secretsmanager:region:account:secret:dynatrace-endpoint"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
"healthCheck": {
|
|
373
|
+
"command": ["CMD-SHELL", "wget -q --spider http://localhost:3000/health || exit 1"],
|
|
374
|
+
"interval": 30,
|
|
375
|
+
"timeout": 5,
|
|
376
|
+
"retries": 3,
|
|
377
|
+
"startPeriod": 40
|
|
378
|
+
},
|
|
379
|
+
"stopTimeout": 35,
|
|
380
|
+
"logConfiguration": {
|
|
381
|
+
"logDriver": "awslogs",
|
|
382
|
+
"options": {
|
|
383
|
+
"awslogs-group": "/ecs/sveltekit-app",
|
|
384
|
+
"awslogs-region": "us-east-1",
|
|
385
|
+
"awslogs-stream-prefix": "ecs"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
]
|
|
390
|
+
}
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
## WebSocket Usage
|
|
394
|
+
|
|
395
|
+
The adapter includes a WebSocket server on `/ws` by default. You can customize the WebSocket behavior by modifying `files/index.js`:
|
|
396
|
+
|
|
397
|
+
```javascript
|
|
398
|
+
wsServer.on('connection', (ws, req) => {
|
|
399
|
+
console.log('WebSocket connection established');
|
|
400
|
+
|
|
401
|
+
ws.on('message', (data) => {
|
|
402
|
+
const message = JSON.parse(data.toString());
|
|
403
|
+
|
|
404
|
+
// Your custom WebSocket logic here
|
|
405
|
+
ws.send(JSON.stringify({
|
|
406
|
+
type: 'response',
|
|
407
|
+
data: 'processed'
|
|
408
|
+
}));
|
|
409
|
+
});
|
|
410
|
+
});
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
Client-side usage:
|
|
414
|
+
|
|
415
|
+
```javascript
|
|
416
|
+
const ws = new WebSocket('ws://localhost:3000/ws');
|
|
417
|
+
|
|
418
|
+
ws.onopen = () => {
|
|
419
|
+
ws.send(JSON.stringify({ type: 'hello' }));
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
ws.onmessage = (event) => {
|
|
423
|
+
const data = JSON.parse(event.data);
|
|
424
|
+
console.log('Received:', data);
|
|
425
|
+
};
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
## Server Instrumentation
|
|
429
|
+
|
|
430
|
+
The adapter fully supports SvelteKit's [instrumentation API](https://kit.svelte.dev/docs/hooks#server-hooks-instrumentation). Create a `src/instrumentation.server.js` file in your SvelteKit project:
|
|
431
|
+
|
|
432
|
+
```javascript
|
|
433
|
+
// src/instrumentation.server.js
|
|
434
|
+
export async function initialize() {
|
|
435
|
+
console.log('Server instrumentation initialized!');
|
|
436
|
+
|
|
437
|
+
// Initialize monitoring, databases, caches, etc.
|
|
438
|
+
await connectToDatabase();
|
|
439
|
+
await initializeCache();
|
|
440
|
+
|
|
441
|
+
// This runs before the server starts accepting requests
|
|
442
|
+
}
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
The instrumentation file will be automatically bundled and executed before your server starts.
|
|
446
|
+
|
|
447
|
+
### Instrumentation with OpenTelemetry
|
|
448
|
+
|
|
449
|
+
You can combine instrumentation with OpenTelemetry for enhanced monitoring:
|
|
450
|
+
|
|
451
|
+
```javascript
|
|
452
|
+
// src/instrumentation.server.js
|
|
453
|
+
import { trace } from '@opentelemetry/api';
|
|
454
|
+
|
|
455
|
+
export async function initialize() {
|
|
456
|
+
const tracer = trace.getTracer('app-initialization');
|
|
457
|
+
const span = tracer.startSpan('server-init');
|
|
458
|
+
|
|
459
|
+
try {
|
|
460
|
+
await setupApplication();
|
|
461
|
+
span.addEvent('Application setup complete');
|
|
462
|
+
} catch (error) {
|
|
463
|
+
span.recordException(error);
|
|
464
|
+
throw error;
|
|
465
|
+
} finally {
|
|
466
|
+
span.end();
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
## OpenTelemetry & Dynatrace
|
|
472
|
+
|
|
473
|
+
The adapter automatically instruments:
|
|
474
|
+
- HTTP requests (incoming and outgoing)
|
|
475
|
+
- Database queries (PostgreSQL, MySQL, MongoDB, Redis)
|
|
476
|
+
- External API calls
|
|
477
|
+
- Custom spans (if needed)
|
|
478
|
+
|
|
479
|
+
### Dynatrace Setup
|
|
480
|
+
|
|
481
|
+
1. Get your Dynatrace environment ID and API token
|
|
482
|
+
2. Set environment variables:
|
|
483
|
+
|
|
484
|
+
```bash
|
|
485
|
+
OTEL_ENABLED=true
|
|
486
|
+
OTEL_EXPORTER_OTLP_ENDPOINT=https://{your-env-id}.live.dynatrace.com/api/v2/otlp/v1/traces
|
|
487
|
+
DYNATRACE_API_TOKEN=your-api-token
|
|
488
|
+
OTEL_SERVICE_NAME=my-sveltekit-app
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
3. Traces will appear in Dynatrace's Distributed Traces view
|
|
492
|
+
|
|
493
|
+
### Custom Spans
|
|
494
|
+
|
|
495
|
+
```javascript
|
|
496
|
+
import { trace } from '@opentelemetry/api';
|
|
497
|
+
|
|
498
|
+
const tracer = trace.getTracer('my-app');
|
|
499
|
+
|
|
500
|
+
export async function load() {
|
|
501
|
+
const span = tracer.startSpan('custom-operation');
|
|
502
|
+
|
|
503
|
+
try {
|
|
504
|
+
// Your code here
|
|
505
|
+
span.addEvent('Processing started');
|
|
506
|
+
const result = await processData();
|
|
507
|
+
span.setAttribute('result.count', result.length);
|
|
508
|
+
return { data: result };
|
|
509
|
+
} finally {
|
|
510
|
+
span.end();
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
```
|
|
514
|
+
|
|
515
|
+
## Performance Benchmarks
|
|
516
|
+
|
|
517
|
+
Compared to `@sveltejs/adapter-node`:
|
|
518
|
+
|
|
519
|
+
- **~30x faster** routing (Polka vs Express)
|
|
520
|
+
- **~40% smaller** bundle size
|
|
521
|
+
- **~25% faster** cold starts
|
|
522
|
+
- **Pre-compression**: Serve `.gz` and `.br` files directly (zero CPU cost)
|
|
523
|
+
- **High throughput**: Handle 10MB+ request bodies without issues
|
|
524
|
+
|
|
525
|
+
## Monitoring & Observability
|
|
526
|
+
|
|
527
|
+
### Health Check Endpoints
|
|
528
|
+
|
|
529
|
+
- `GET /health` - Liveness probe (returns 200 if server is alive)
|
|
530
|
+
- `GET /readiness` - Readiness probe (returns 200 if ready to accept traffic)
|
|
531
|
+
|
|
532
|
+
### Metrics (via OpenTelemetry)
|
|
533
|
+
|
|
534
|
+
The adapter automatically collects:
|
|
535
|
+
- Request duration and count
|
|
536
|
+
- HTTP status codes
|
|
537
|
+
- Database query performance
|
|
538
|
+
- Memory and CPU usage
|
|
539
|
+
- WebSocket connections
|
|
540
|
+
|
|
541
|
+
### Graceful Shutdown
|
|
542
|
+
|
|
543
|
+
The server handles `SIGTERM` and `SIGINT` signals:
|
|
544
|
+
|
|
545
|
+
1. Stop accepting new connections
|
|
546
|
+
2. Close existing WebSocket connections
|
|
547
|
+
3. Flush OpenTelemetry traces
|
|
548
|
+
4. Exit after timeout (default 30s)
|
|
549
|
+
|
|
550
|
+
## Troubleshooting
|
|
551
|
+
|
|
552
|
+
### High Memory Usage
|
|
553
|
+
|
|
554
|
+
Reduce OpenTelemetry sampling rate:
|
|
555
|
+
|
|
556
|
+
```javascript
|
|
557
|
+
adapter({
|
|
558
|
+
telemetrySampleRate: 0.1 // Sample only 10% of requests
|
|
559
|
+
})
|
|
560
|
+
```
|
|
561
|
+
|
|
562
|
+
### WebSocket Connection Issues
|
|
563
|
+
|
|
564
|
+
Ensure your load balancer supports WebSocket upgrades:
|
|
565
|
+
- ALB: Enable sticky sessions
|
|
566
|
+
- NGINX: Add `proxy_http_version 1.1;` and `proxy_set_header Upgrade $http_upgrade;`
|
|
567
|
+
|
|
568
|
+
### Compression Not Working
|
|
569
|
+
|
|
570
|
+
Check content types and sizes:
|
|
571
|
+
- Minimum size: 1KB (threshold)
|
|
572
|
+
- Images/videos are not compressed
|
|
573
|
+
- Pre-compressed files (.gz, .br) are served if available
|
|
574
|
+
|
|
575
|
+
## License
|
|
576
|
+
|
|
577
|
+
MIT
|
|
578
|
+
|
|
579
|
+
## Contributing
|
|
580
|
+
|
|
581
|
+
Contributions welcome! Please open an issue or PR on GitHub.
|
package/files/env.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Environment configuration with sensible defaults
|
|
3
|
+
*/
|
|
4
|
+
export const config = {
|
|
5
|
+
// Server configuration
|
|
6
|
+
port: parseInt(process.env.PORT || '3000', 10),
|
|
7
|
+
host: process.env.HOST || '0.0.0.0', // Important: use 0.0.0.0 for containers
|
|
8
|
+
|
|
9
|
+
// Performance options
|
|
10
|
+
compression: JSON.parse('COMPRESSION_ENABLED'),
|
|
11
|
+
compressionLevel: JSON.parse('COMPRESSION_LEVEL'),
|
|
12
|
+
bodyLimit: JSON.parse('BODY_LIMIT'),
|
|
13
|
+
|
|
14
|
+
// WebSocket configuration
|
|
15
|
+
websocket: {
|
|
16
|
+
enabled: JSON.parse('WEBSOCKET_ENABLED'),
|
|
17
|
+
path: JSON.parse('WEBSOCKET_PATH')
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
// OpenTelemetry configuration
|
|
21
|
+
telemetry: {
|
|
22
|
+
enabled: JSON.parse('TELEMETRY_ENABLED') && process.env.OTEL_ENABLED !== 'false',
|
|
23
|
+
serviceName: process.env.OTEL_SERVICE_NAME || 'sveltekit-app',
|
|
24
|
+
serviceVersion: process.env.OTEL_SERVICE_VERSION || '1.0.0',
|
|
25
|
+
endpoint: process.env.OTEL_EXPORTER_OTLP_ENDPOINT,
|
|
26
|
+
protocol: process.env.OTEL_EXPORTER_OTLP_PROTOCOL || 'http', // 'http' or 'grpc'
|
|
27
|
+
sampleRate: parseFloat(process.env.OTEL_SAMPLE_RATE || JSON.parse('TELEMETRY_SAMPLE_RATE')),
|
|
28
|
+
dynatraceToken: process.env.DYNATRACE_API_TOKEN,
|
|
29
|
+
customConfig: JSON.parse('TELEMETRY_CONFIG')
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
// Health check configuration
|
|
33
|
+
healthCheck: {
|
|
34
|
+
enabled: JSON.parse('HEALTH_CHECK_ENABLED')
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
// Graceful shutdown
|
|
38
|
+
gracefulShutdownTimeout: JSON.parse('GRACEFUL_SHUTDOWN_TIMEOUT'),
|
|
39
|
+
|
|
40
|
+
// Server tuning
|
|
41
|
+
keepAliveTimeout: parseInt(process.env.KEEP_ALIVE_TIMEOUT || '65000', 10),
|
|
42
|
+
headersTimeout: parseInt(process.env.HEADERS_TIMEOUT || '66000', 10),
|
|
43
|
+
maxRequestsPerSocket: parseInt(process.env.MAX_REQUESTS_PER_SOCKET || '0', 10),
|
|
44
|
+
|
|
45
|
+
// Origin for CORS (if needed)
|
|
46
|
+
origin: process.env.ORIGIN || undefined,
|
|
47
|
+
|
|
48
|
+
// XFF header handling (trust proxy)
|
|
49
|
+
trustProxy: process.env.TRUST_PROXY === 'true'
|
|
50
|
+
};
|
package/files/handler.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import 'SHIMS';
|
|
2
|
+
import { Server } from 'SERVER';
|
|
3
|
+
import { manifest } from 'MANIFEST';
|
|
4
|
+
|
|
5
|
+
export const server = new Server(manifest);
|
|
6
|
+
|
|
7
|
+
await server.init({ env: process.env });
|
|
8
|
+
|
|
9
|
+
export const handler = async (req, res) => {
|
|
10
|
+
// Let SvelteKit handle the request
|
|
11
|
+
return server.respond(req, res, {
|
|
12
|
+
getClientAddress() {
|
|
13
|
+
return req.headers['x-forwarded-for']?.split(',')[0] || req.socket.remoteAddress;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
};
|