@veryfront/ext-observability-sentry-node 0.1.1185 → 0.1.1189
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 +8 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,11 +5,18 @@ First-party Sentry application error reporter for Veryfront runtimes.
|
|
|
5
5
|
Enable the adapter explicitly and provide its credential:
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
+
SENTRY_ENABLED=true
|
|
8
9
|
VERYFRONT_ERROR_REPORTER=sentry
|
|
9
10
|
SENTRY_DSN=https://public@example.ingest.sentry.io/1
|
|
10
11
|
```
|
|
11
12
|
|
|
12
|
-
`
|
|
13
|
+
Only `SENTRY_ENABLED=true` or `SENTRY_ENABLED=1` enables reporting. An unset,
|
|
14
|
+
blank, `false`, `0`, or unrecognized value disables reporting even when the
|
|
15
|
+
adapter and a valid DSN are present. `SENTRY_DSN` selects the event destination
|
|
16
|
+
and may use a public HTTPS custom Sentry hostname; `SENTRY_URL` is
|
|
17
|
+
release-tooling configuration and is not read by the runtime adapter.
|
|
18
|
+
|
|
19
|
+
`SENTRY_DSN` alone does not activate the framework adapter. Official compiled Veryfront
|
|
13
20
|
binaries include the dormant adapter; npm consumers install
|
|
14
21
|
`@veryfront/ext-observability-sentry` separately. The adapter captures
|
|
15
22
|
unexpected application failures, tags them by service and boundary, and keeps
|
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.1189",
|
|
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"
|