Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v2.5.1 #840

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log - @splunk/otel

## 2.5.1

- Prebuild the native module for Node.js 21. [#838](https://github.com/signalfx/splunk-otel-js/pull/838)

## 2.5.0

- Upgrade to OpenTelemetry `1.17.1` / `0.44.0`. [#822](https://github.com/signalfx/splunk-otel-js/pull/822)
Expand Down Expand Up @@ -180,20 +184,20 @@ October 28, 2022
The deprecated functions are still available, but using them will log a deprecation message.

- ### Replace SignalFx metrics with OpenTelemetry metrics

SignalFx metrics SDK has been removed and replaced with OpenTelemetry Metrics SDKs.
The internal SignalFx client is no longer available to users, if you have been using custom metrics with the SignalFx client provided by Splunk OpenTelemetry JS distribution, see the [Migrate from the SignalFx Tracing Library for NodeJS](https://quickdraw.splunk.com/redirect/?product=Observability&version=current&location=nodejs.application.migrate) in the official documentation.

Runtime metric names are now using [OpenTelemetry conventions](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/semantic_conventions/runtime-environment-metrics.md), the following is a list of changed metric names:

| SignalFx (no longer available) | OpenTelemetry |
| ------------------------------ | ------------------------------------------- |
| `nodejs.memory.heap.total` | `process.runtime.nodejs.memory.heap.total` |
| `nodejs.memory.heap.used` | `process.runtime.nodejs.memory.heap.used` |
| `nodejs.memory.rss` | `process.runtime.nodejs.memory.rss` |
| `nodejs.memory.gc.size` | `process.runtime.nodejs.memory.gc.size` |
| `nodejs.memory.gc.pause` | `process.runtime.nodejs.memory.gc.pause` |
| `nodejs.memory.gc.count` | `process.runtime.nodejs.memory.gc.count` |
| `nodejs.memory.gc.pause` | `process.runtime.nodejs.memory.gc.pause` |
| `nodejs.memory.gc.count` | `process.runtime.nodejs.memory.gc.count` |
| `nodejs.event_loop.lag.max` | `process.runtime.nodejs.event_loop.lag.max` |
| `nodejs.event_loop.lag.min` | `process.runtime.nodejs.event_loop.lag.min` |

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splunk/otel",
"version": "2.5.0",
"version": "2.5.1",
"description": "The Splunk distribution of OpenTelemetry Node Instrumentation provides a Node agent that automatically instruments your Node application to capture and report distributed traces to Splunk APM.",
"repository": "[email protected]:signalfx/splunk-otel-js.git",
"author": "Splunk <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export const VERSION = '2.5.0';
export const VERSION = '2.5.1';
Loading