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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ibm/telemetry-config-schema

v1.3.0

Published

Config file schema and associated utilities for IBM Telemetry

Downloads

463

Readme

IBM Telemetry config file schema

This repository contains the configuration file schema for IBM Telemetry.

IBM Telemetry's config file schema is applied through metadata files written in YAML. If you're new to YAML and want to learn more, see "Learn YAML in Y minutes." Below is the latest stable version of the schema.

Stable version

The current supported stable version of the config schema is v1. You can add the YAML language server to your YAML files by adding the following line to the top of your files:

# yaml-language-server: $schema=https://unpkg.com/@ibm/telemetry-config-schema@v1/dist/config.schema.json

Note: If you're using VS Code as your editor you may install a YAML extension, such as YAML for additional language support such as validation and auto–complete.

Schema keys

| Key | Description | Required | Type | | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------ | | version | Current schema version. | Required | 1 | | projectId | Unique identifier assigned on a per-project basis. See Onboarding a package to IBM Telemetry for instructions on how to obtain a projectId | Required | String | | endpoint | URL of an OpenTelemetry-compatible metrics collector API endpoint. | Required | String | | collect | Object containing one or more scopes for which to collect data. See collect schema for more info. | Required | Object |

Sample

# yaml-language-server: $schema=https://unpkg.com/@ibm/telemetry-config-schema@v1/dist/config.schema.json
version: 1
projectId: 'project id'
endpoint: 'https://example.com/v1/metrics'
collect:
  npm:
    dependencies:
  jsx:
    elements:
      allowedAttributeNames:
        - 'size'
        - 'title'
      allowedAttributeStringValues:
        - 'small'
        - 'medium'
        - 'large'
        - 'title1'
        - 'title2'
  js:
    tokens:
    functions:
      allowedArgumentStringValues:
        - 'arg1'
        - 'arg2'

Collect schema

The keys under collect represent the various "scopes" that IBM Telemetry understands (e.g. jsx). Each "scope" contains one or more "metrics" that can be collected for that scope (e.g. jsx.elements). Each "metric" contains zero or more configuration options for that metric (e.g. jsx.elements.allowedAttributeNames).

Note: At least one scope is required.

collect:
  npm:
    dependencies:
  jsx:
    elements:
      allowedAttributeNames:
        - 'size'
        - 'title'
      allowedAttributeStringValues:
        - 'small'
        - 'medium'
        - 'large'
        - 'title1'
        - 'title2'
  js:
    tokens:
    functions:
      allowedArgumentStringValues:
        - 'arg1'
        - 'arg2'

Collect keys (scopes)

| Key | Description | Required | Type | | ----- | --------------------------------------------------------------------------------------------------------------- | -------- | ------ | | npm | Configuration for collecting telemetry data from an npm environment. See NPM scope for more info. | Optional | Object | | jsx | Configuration for collecting telemetry data from JSX files. See JSX scope for more info. | Optional | Object | | js | Configuration for collecting telemetry data for tokens and functions. See JS scope for more info. | Optional | Object |

NPM scope

This scope applies to NPM environments.

dependencies metric

Captures data relating to the instrumented package's installer(s) and dependencies installed alongside it. Specifically:

  • Project names and versions that installed the instrumented package at the instrumented version.
  • Package names and versions that are installed along with the instrumented package at the instrumented version.

This data can help answer questions such as:

  • What projects are consuming my package?
  • What is the distribution of different versions of my package that consumers are using?
  • What percentage of consumers are using the latest version of my package?
  • What version of React/Angular/Vue... are consumers most using along with my package?
---
npm:
  dependencies:
  # or
  # dependencies: null

JSX Scope

This scope is only applicable to React packages. This scope may be useful to configure if the package you're instrumenting exports React components.

elements metric

Captures (JSX) element-specific usage data for the instrumented package. Specifically:

  • All elements exported through the instrumented package that are being used in a given project that installed the package
  • Element configurations (attributes and values), as determined by the allowedAttributeNames and allowedAttributeStringValues config options (see below for additional information)
  • Import paths used to access the instrumented package's exported elements

This data can help you answer questions such as:

  • What is the most widely used element exported through my package?
  • What is the least widely used element exported through my package?
  • What are the most commonly used attributes for a given element exported through my package?
  • How many times does "project x" use my exported Button element?

By default, the jsx.elements metrics will collect element names, anonymized element attribute names, and anonymized element attribute values. The following config options allow certain additional values to be collected in plain text (instead of as anonymized values).

  • allowedAttributeNames: This is an optional array of strings.

    Enables plain-text collection of specific JSX attribute names (prop names). These are collected for all discovered JSX elements imported from the instrumented package. Additionally, boolean and numeric values for these attributes will be collected in plain text.

    At least one string value is required if this key is defined.

  • allowedAttributeStringValues: This is an optional array of strings.

    Enables plain-text collection of specific JSX attribute string values (prop values). These are collected for discovered JSX attributes included in the allowedAttributeNames list.

    At least one value is required if this key is defined.

Sample:

---
jsx:
  elements:
    allowedAttributeNames:
      - 'size'
      - 'title'
    allowedAttributeStringValues:
      - 'small'
      - 'medium'
      - 'large'
      - 'title1'
      - 'title2'

Note: You can use the IBM Telemetry Js Config Generator script to automatically generate a config file with these values. Remember to verify that the generated output is correct before using the config file.

JS Scope

This scope applies to JavaScript environments. Captures metrics for file token and function usage. Applies to .jsx, .mjs, .js, .cjs, .tsx, .mts, .ts, .cts, .mjsx, .cjsx, .mtsx, .ctsx extension files.

function metric

Captures function-specific usage data for the instrumented package. Specifically:

  • All functions exported through the instrumented package that are being used in a given project that installed the package
  • Argument values passed to used functions, as determined by the allowedArgumentStringValues config option (see below for additional information)
  • Import paths used to access the instrumented package's exported functions

This data can help you answer questions such as:

  • What is the most widely used function/hook exported through my package?
  • What is the least widely used function/hook exported through my package?
  • What are the most commonly used arguments for a given function/hook exported through my package?
  • How many times does "project x" use my exported "name" function?

By default, the js.function metrics will collect function names, access and import paths, and anonymized function arguments. The following config options allow certain additional values to be collected in plain text (instead of as anonymized values).

  • allowedArgumentStringValues: This is an optional array of strings.

    Enables plain-text collection of specific function argument string values. These are collected for discovered JS functions.

    At least one value is required if this key is defined.

token metric

Captures token-specific usage data for the instrumented package. Specifically:

  • All tokens exported through the instrumented package that are being used in a given project that installed the package
  • Import paths used to access the instrumented package's exported tokens

This data can help you answer questions such as:

  • What is the most widely used token exported through my package?
  • What is the least widely used token exported through my package?
  • How many times does "project x" use my exported "name" token?

By default, the js.token metrics will collect token names, access and import paths.

Sample:

---
js:
  tokens:
  functions:
    allowedArgumentStringValues:
      - 'arg1'
      - 'arg2'