Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@opentelemetry/resources

Package Overview
Dependencies
3
Maintainers
3
Versions
167
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @opentelemetry/resources

OpenTelemetry SDK resources


Version published
Weekly downloads
8.7M
decreased by-7.36%
Maintainers
3
Install size
1.88 MB
Created
Weekly downloads
 

Package description

What is @opentelemetry/resources?

The @opentelemetry/resources package is part of the OpenTelemetry project, which provides a set of APIs, libraries, agents, and instrumentation to create and manage telemetry data (metrics, logs, and traces) for cloud-native software. This package specifically offers a way to describe the entity producing telemetry, such as service, environment, and versioning information. It allows users to define and attach these details to their telemetry data.

What are @opentelemetry/resources's main functionalities?

Creating a Resource

This feature allows the creation of a Resource object that describes the service generating telemetry data. It includes attributes like service name, version, and deployment environment.

{"const { Resource } = require('@opentelemetry/resources');
const { SemanticResourceAttributes } = require('@opentelemetry/semantic-conventions');

const resource = new Resource({
  [SemanticResourceAttributes.SERVICE_NAME]: 'my-service',
  [SemanticResourceAttributes.SERVICE_VERSION]: '1.0.0',
  [SemanticResourceAttributes.DEPLOYMENT_ENVIRONMENT]: 'production'
});
"}

Merging Resources

This feature demonstrates how to merge two Resource objects into one, combining their attributes. This is useful when you have resource information coming from different sources and want to create a unified view.

{"const { Resource } = require('@opentelemetry/resources');

const resource1 = new Resource({
  'service.name': 'my-service'
});
const resource2 = new Resource({
  'service.version': '1.0.0'
});

const mergedResource = resource1.merge(resource2);
"}

Other packages similar to @opentelemetry/resources

Changelog

Source

1.16.0

:rocket: (Enhancement)

  • feat(sdk-metrics): implement MetricProducer specification #4007
  • feat: update PeriodicExportingMetricReader and PrometheusExporter to accept optional metric producers #4077 @aabmass

:bug: (Bug Fix)

  • fix(exporter-zipkin): rounding duration to the nearest int to be compliant with zipkin protocol #4064 @n0cloud
  • fix(sdk-metrics): metric names should be case-insensitive

:books: (Refine Doc)

  • docs(guidelines): add dependencies guidelines #4040

Keywords

FAQs

Last updated on 11 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc