npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@instana-integration/wxd-infrastructure

v1.0.0

Published

The Instana integration package is designed to showcase infrastructure observability features in Instana by monitoring Kubernetes container resource metrics collected through the OpenTelemetry Prometheus Receiver.

Readme

@instana-integration/wxd-infrastructure

The Instana integration package is designed to showcase infrastructure observability capabilities within Instana by monitoring Kubernetes container resource metrics collected through the OpenTelemetry Prometheus Receiver. These metrics provide real-time visibility into CPU, memory, filesystem, and network utilization for Watsonx.data components running in Kubernetes/OpenShift clusters.

Dashboards

Below are the dashboards currently supported by this integration package.

| Dashboard Title | |-----------------| | Infrastructure Overview | | Container CPU Usage | | Container Memory Usage | | Container Filesystem Usage | | Container Network Traffic |

Metrics

The following infrastructure metrics are included in this integration package.

| Metric | Type | Description | |--------|------|-------------| | container_cpu_usage_seconds_total | Sum | Total CPU time consumed by the container. | | container_memory_usage_bytes | Gauge | Current memory usage of the container. | | container_memory_working_set_bytes | Gauge | Working set memory currently in use by the container. | | container_fs_usage_bytes | Gauge | Current filesystem usage by the container. | | container_network_receive_bytes_total | Sum | Total bytes received over the network by the container. | | container_network_transmit_bytes_total | Sum | Total bytes transmitted over the network by the container. |

Semantic Conventions

The metrics follow the OpenTelemetry Prometheus Receiver semantic conventions.

Resource Attributes

The following resource attributes can be used to filter infrastructure metrics.

| Attribute Key | Type | Description | |---------------|------|-------------| | metric.tag.Instanceid | string | Filters metrics for a specific Watsonx.data instance. | | metric.tag.PodUid | string | Filters metrics for a specific Kubernetes pod. | | metric.tag.k8s.namespace.name | string | Filters metrics by Kubernetes namespace. | | metric.tag.k8s.pod.name | string | Filters metrics by Kubernetes pod name. | | metric.tag.k8s.node.name | string | Filters metrics by Kubernetes node. |

OpenTelemetry Metric Names

| Prometheus Metric | Instana Metric | |-------------------|----------------| | container_cpu_usage_seconds_total | metrics.sums.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_cpu_usage_seconds_total | | container_memory_usage_bytes | metrics.gauges.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_memory_usage_bytes | | container_memory_working_set_bytes | metrics.gauges.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_memory_working_set_bytes | | container_fs_usage_bytes | metrics.gauges.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_fs_usage_bytes | | container_network_receive_bytes_total | metrics.sums.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_network_receive_bytes_total | | container_network_transmit_bytes_total | metrics.sums.github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver/container_network_transmit_bytes_total |

Installation and Usage

With the Instana CLI for integration package management, you can download and import this package into your Instana tenant.

Download the package

stanctl-integration download --package @instana-integration/wxd-infrastructure

Import the package

stanctl-integration import --package @instana-integration/wxd-infrastructure \
  --server $INSTANA_SERVER \
  --token $API_TOKEN \
  --set serviceinstanceid=$SERVICE_INSTANCE_ID

Where:

  • INSTANA_SERVER: Base URL of your Instana tenant (for example, https://example.instana.io).
  • API_TOKEN: Instana API token with permissions to import integration packages.
  • SERVICE_INSTANCE_ID: Unique identifier of the monitored service instance.