@evenicanpm/common-core 2.4.1 → 2.5.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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/src/otel/README.md +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/otel/README.md
CHANGED
|
@@ -19,10 +19,10 @@ export async function initializeOTel() {
|
|
|
19
19
|
}
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
**Then import it early in your server startup** (e.g., in a route handler or API
|
|
22
|
+
**Then import it early in your server startup** (e.g., in a route handler or API proxy that runs first):
|
|
23
23
|
|
|
24
24
|
```ts
|
|
25
|
-
// In your first API route or
|
|
25
|
+
// In your first API route or proxy
|
|
26
26
|
import { initializeOTel } from "@/lib/otel-init";
|
|
27
27
|
await initializeOTel();
|
|
28
28
|
```
|