Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@opentelemetry/resource-detector-container

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentelemetry/resource-detector-container

Opentelemetry resource detector to get container resource attributes

Source
npmnpm
Version
0.7.11
Version published
Weekly downloads
6.2M
-0.71%
Maintainers
2
Weekly downloads
 
Created
Source

OpenTelemetry Resource Detector for Container

NPM Published Version Apache License

component owners: @abhee11

Resource detector for container id. Compatible with OpenTelemetry JS API and SDK 1.0+.

Installation

npm install --save @opentelemetry/resource-detector-container

Usage

import { detectResources } from '@opentelemetry/resources';
import { containerDetector } from '@opentelemetry/resource-detector-container'
const resource = await detectResources({
   detectors: [containerDetector],
})

const tracerProvider = new NodeTracerProvider({ resource });

Available detectors

This package uses @opentelemetry/semantic-conventions version 1.22+, which implements Semantic Convention Version 1.7.0

Container Detector

Populates container.id for processes running on containers supporting : docker( cgroup v1 or v2 ) or with containerd

Resource AttributeDescription
container.idValue parsed from file /proc/self/cgroup (cgroup v1). If it doesn't exist, parse the value from file /proc/self/mountinfo (cgroup v2)

License

Apache 2.0 - See LICENSE for more information.

FAQs

Package last updated on 06 Nov 2025

Did you know?

Socket

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