@launchdarkly/observability 0.2.1 → 0.3.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 +25 -0
- package/README.md +3 -5
- package/dist/observability.js +1344 -1329
- package/dist/observability.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @launchdarkly/observability
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3993134: refactor observability plugins to no longer require an observability project id
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [3993134]
|
|
12
|
+
- highlight.run@9.18.17
|
|
13
|
+
|
|
14
|
+
## 0.2.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 5fdfaba: 75983c01e66ee0f3fda29f7ab4a78254d11013a0
|
|
19
|
+
- 5fdfaba: update readmes to update early access preview progress
|
|
20
|
+
- 5fdfaba: add user agent and navigator language on trace attributes
|
|
21
|
+
- 5fdfaba: update flag span event names to follow feature_flag.evaluation convention
|
|
22
|
+
- 5fdfaba: add version reporting for @launchdarkly/observability
|
|
23
|
+
- Updated dependencies [5fdfaba]
|
|
24
|
+
- Updated dependencies [5fdfaba]
|
|
25
|
+
- Updated dependencies [5fdfaba]
|
|
26
|
+
- highlight.run@9.18.16
|
|
27
|
+
|
|
3
28
|
## 0.2.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -5,12 +5,10 @@
|
|
|
5
5
|
[![NPM][o11y-sdk-dm-badge]][o11y-sdk-npm-link]
|
|
6
6
|
[![NPM][o11y-sdk-dt-badge]][o11y-sdk-npm-link]
|
|
7
7
|
|
|
8
|
-
#
|
|
8
|
+
# Early Access Preview️
|
|
9
9
|
|
|
10
10
|
> [!CAUTION]
|
|
11
|
-
> This library is
|
|
12
|
-
|
|
13
|
-
# ☝️☝️☝️☝️☝️☝️
|
|
11
|
+
> This library is in Early Access Preview and APIs are subject to change until a 1.x version is released.
|
|
14
12
|
|
|
15
13
|
## Install
|
|
16
14
|
|
|
@@ -34,7 +32,7 @@ const client = init3(
|
|
|
34
32
|
{
|
|
35
33
|
// Not including plugins at all would be equivalent to the current LaunchDarkly SDK.
|
|
36
34
|
plugins: [
|
|
37
|
-
new Observability(
|
|
35
|
+
new Observability({
|
|
38
36
|
networkRecording: {
|
|
39
37
|
enabled: true,
|
|
40
38
|
recordHeadersAndBody: true,
|