@veryfront/ext-observability-sentry-node 0.1.1186 → 0.1.1190
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/README.md +9 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
First-party Sentry application error reporter for Veryfront runtimes.
|
|
4
4
|
|
|
5
|
+
This package is service-conditional rather than an auto-activated application
|
|
6
|
+
extension. The server or agent service imports the matching reporter only after
|
|
7
|
+
its enablement policy passes; adding the package to `node_modules` alone does
|
|
8
|
+
not initialize Sentry or enable network egress.
|
|
9
|
+
|
|
5
10
|
Enable the adapter explicitly and provide its credential:
|
|
6
11
|
|
|
7
12
|
```sh
|
|
@@ -10,10 +15,10 @@ VERYFRONT_ERROR_REPORTER=sentry
|
|
|
10
15
|
SENTRY_DSN=https://public@example.ingest.sentry.io/1
|
|
11
16
|
```
|
|
12
17
|
|
|
13
|
-
`SENTRY_ENABLED=
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
Only `SENTRY_ENABLED=true` or `SENTRY_ENABLED=1` enables reporting. An unset,
|
|
19
|
+
blank, `false`, `0`, or unrecognized value disables reporting even when the
|
|
20
|
+
adapter and a valid DSN are present. `SENTRY_DSN` selects the event destination
|
|
21
|
+
and may use a public HTTPS custom Sentry hostname; `SENTRY_URL` is
|
|
17
22
|
release-tooling configuration and is not read by the runtime adapter.
|
|
18
23
|
|
|
19
24
|
`SENTRY_DSN` alone does not activate the framework adapter. Official compiled Veryfront
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veryfront/ext-observability-sentry-node",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1190",
|
|
4
4
|
"description": "Veryfront first-party extension package for ext-observability-sentry-node",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"veryfront",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"scripts": {},
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=22.3.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|