@opentelemetry/resource-detector-instana 0.2.0 → 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 +15 -0
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.0](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/resource-detector-instana-v0.2.0...resource-detector-instana-v0.3.0) (2022-09-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update experimental Otel deps to ^0.31.0 ([#1096](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/1096)) ([4c8843b](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/4c8843be14896d1159a622c07eb3a049401ccba1))
|
|
9
|
+
* update experimental Otel deps to ^0.32.0 ([#1143](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/1143)) ([6fb1911](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/6fb191139aed2ca763300dcf9adb51121a88f97e))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* devDependencies
|
|
16
|
+
* @opentelemetry/contrib-test-utils bumped from ^0.31.0 to ^0.32.0
|
|
17
|
+
|
|
3
18
|
## [0.2.0](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/resource-detector-instana-v0.1.0...resource-detector-instana-v0.2.0) (2022-08-09)
|
|
4
19
|
|
|
5
20
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npm install --save @opentelemetry/resource-detector-instana
|
|
|
16
16
|
- INSTANA_AGENT_HOST: The Instana agent hostname.
|
|
17
17
|
- INSTANA_AGENT_PORT: The Instana agent port.
|
|
18
18
|
- INSTANA_RETRY_TIMEOUT_MS: The resource detector does three retries to connect to the Instana agent. This is the timeout between the retries.
|
|
19
|
-
-
|
|
19
|
+
- INSTANA_AGENT_TIMEOUT_MS: The client timeout when connecting the Instana agent.
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentelemetry/resource-detector-instana",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "OpenTelemetry SDK resource detector for Instana",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/src/index.d.ts",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@opentelemetry/api": "^1.0.0",
|
|
43
|
-
"@opentelemetry/contrib-test-utils": "^0.
|
|
44
|
-
"@opentelemetry/sdk-node": "^0.
|
|
43
|
+
"@opentelemetry/contrib-test-utils": "^0.32.0",
|
|
44
|
+
"@opentelemetry/sdk-node": "^0.32.0",
|
|
45
45
|
"@types/mocha": "8.2.3",
|
|
46
46
|
"@types/node": "16.11.21",
|
|
47
47
|
"@types/semver": "7.3.8",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"@opentelemetry/api": "^1.0.0"
|
|
62
62
|
},
|
|
63
63
|
"homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-instana#readme",
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "4a9442ceea7f8555ad6e5f731f92834f3398d5b9"
|
|
65
65
|
}
|