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

@api-blitz/otel-autumn

v1.1.0

Published

OpenTelemetry instrumentation for the Autumn billing SDK

Readme

@api-blitz/otel-autumn

OpenTelemetry instrumentation for the Autumn billing SDK (autumn-js). Capture spans for every Autumn API call — feature access checks, usage tracking, the full billing lifecycle, customer and entity management, balances, events, plans, features, and referrals — and enrich them with rich billing metadata.

Installation

npm install @api-blitz/otel-autumn
# or
pnpm add @api-blitz/otel-autumn
# or
yarn add @api-blitz/otel-autumn
# or
bun add @api-blitz/otel-autumn

Peer dependencies: @opentelemetry/api >= 1.9.0, autumn-js >= 0.0.70 < 2.0.0

Quick start

import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const autumn = new Autumn({
  secretKey: process.env.AUTUMN_SECRET_KEY!,
});

// Instrument the client — all operations are now traced
instrumentAutumn(autumn);

// Use the SDK normally
await autumn.check({ customerId: "cus_123", featureId: "messages" });
await autumn.billing.attach({ customerId: "cus_123", planId: "pro" });

instrumentAutumn wraps the Autumn client instance you already use — no configuration changes needed. Every SDK call creates a CLIENT span with operation-specific attributes, and the same client instance is returned so instrumentation is idempotent (calling it twice is a no-op).

Version compatibility

Works across autumn-js from the last pre-1.0 releases (>= 0.0.70) through the current 1.x line.

  • 1.x — full 36-method coverage across check, track, and every billing.* / customers.* / entities.* / balances.* / events.* / plans.* / features.* / referrals.* sub-resource.
  • Pre-1.0 (0.0.70 – 0.0.80)check and track, plus the flat top-level billing methods that existed before the 1.x rename: attach, cancel, setupPayment, usage. Pre-1.0's Result<T, E> response envelope is unwrapped automatically so response-side span attributes are populated the same way as on 1.x. Pre-1.0's product_id / product_ids are surfaced under the autumn.plan_id / autumn.plan_ids attribute so dashboards stay consistent across versions.

Methods that don't exist on the installed SDK version are skipped silently — instrumenting a pre-1.0 client doesn't fail because autumn.billing / autumn.plans aren't present.

What gets traced

The instrumentation wraps every method on the Autumn SDK client — 2 top-level entry points plus 34 sub-resource operations across 8 namespaces.

Top-level

  • check — feature access checks; optionally atomic check + track via sendEvent
  • track — record usage events

Billing

  • billing.attach — subscribe / upgrade / downgrade a plan
  • billing.multiAttach — attach multiple plans in a single Stripe subscription
  • billing.previewAttach / billing.previewMultiAttach — preview charges before confirming
  • billing.update — update subscriptions, including cancelAction: 'cancel_immediately' | 'cancel_end_of_cycle' | 'uncancel'
  • billing.previewUpdate — preview prorated charges for an update
  • billing.openCustomerPortal — Stripe billing portal session
  • billing.setupPayment — payment-method setup session

Customers

  • customers.getOrCreate, list, update, delete

Entities

  • entities.create, get, update, delete — for per-seat / per-project scoped balances

Balances

  • balances.create, update, delete, finalize — manage feature balances and finalize balance locks

Events

  • events.list — list raw usage events
  • events.aggregate — aggregate usage over time periods

Plans

  • plans.create, get, list, update, delete

Features

  • features.create, get, list, update, delete

Referrals

  • referrals.createCode, redeemCode

Configuration

import { instrumentAutumn } from "@api-blitz/otel-autumn";

instrumentAutumn(autumn, {
  // Custom tracer name (default: "@api-blitz/otel-autumn")
  tracerName: "my-app-autumn-tracer",

  // Emit potentially sensitive customer data (payment URLs, portal URLs).
  // The non-sensitive `autumn.has_payment_url` / `autumn.has_portal_url`
  // booleans are always emitted regardless (default: false).
  captureCustomerData: false,

  // Capture plan customization blobs and checkout session params (default: false).
  captureOptions: false,

  // Master switches
  captureResourceIds: true,
  captureRequestAttributes: true,
  captureResponseAttributes: true,

  // Opt out of individual sub-resources
  instrumentBilling: true,
  instrumentCustomers: true,
  instrumentEntities: true,
  instrumentBalances: true,
  instrumentEvents: true,
  instrumentPlans: true,
  instrumentFeatures: true,
  instrumentReferrals: true,
});

Span attributes

Every span includes comprehensive attributes to help with debugging and monitoring.

Common attributes

| Attribute | Description | Example | | -------------------- | ----------------------------------------------- | ------------------- | | billing.system | Constant autumn | autumn | | billing.operation | Resource-qualified operation name | billing.attach | | autumn.resource | Sub-resource (or the operation for flat methods) | billing | | autumn.target | Full target (same value as billing.operation) | billing.attach | | autumn.customer_id | Customer identifier | cus_123 | | autumn.entity_id | Entity identifier (when provided) | seat_42 |

autumn.check

| Attribute | Description | Example | | ------------------------- | -------------------------------------------------- | ------------- | | autumn.feature_id | Feature being checked | messages | | autumn.feature_name | Feature display name | Messages | | autumn.feature_type | boolean / metered / credit_system | metered | | autumn.allowed | Whether access is allowed | true | | autumn.balance | Remaining balance for the feature | 42 | | autumn.required_balance | Minimum balance the check required | 3 | | autumn.send_event | Whether the check also records a usage event | true | | autumn.with_preview | Whether upsell preview was requested | false | | autumn.lock | Balance lock id (if reserved) | lock_abc | | autumn.flag_id | Flag id returned by the check | flag_123 | | autumn.plan_id | Plan id the flag originates from | pro | | autumn.has_preview | Whether an upsell preview was returned | false | | autumn.plan_scenario | Denied-access scenario | usage_limit |

autumn.track

| Attribute | Description | Example | | ---------------------- | --------------------------------------------------- | -------------- | | autumn.feature_id | Feature being tracked | messages | | autumn.event_name | Custom event name (when provided) | message_sent | | autumn.value | Usage value recorded | 1 | | autumn.lock | Balance lock id (when provided) | lock_abc | | autumn.balance | Updated remaining balance after the track call | 41 | | autumn.balance_count | Number of updated balances when tracking by event | 3 |

autumn.billing.*

| Attribute | Description | Example | | --------------------------------- | ------------------------------------------------------------------------- | ----------------------- | | autumn.plan_id | Plan being attached / updated | pro | | autumn.plan_ids | Comma-joined plan ids on multiAttach | pro,addon_seats | | autumn.plan_count | Number of plans on multiAttach | 2 | | autumn.plan_version | Target plan version | 2 | | autumn.subscription_id | Target subscription (when specified) | sub_123 | | autumn.cancel_action | cancel_immediately / cancel_end_of_cycle / uncancel | cancel_end_of_cycle | | autumn.carry_over_balances | Carry balances into the new plan | true | | autumn.carry_over_usages | Carry usages into the new plan | true | | autumn.no_billing_changes | Skip billing-side changes for the attach/update | false | | autumn.new_billing_subscription | Create a new Stripe subscription instead of merging | true | | autumn.feature_quantities_count | Number of prepaid features configured | 2 | | autumn.discount_count | Number of discounts applied | 1 | | autumn.proration_behavior | prorate_immediately / none | prorate_immediately | | autumn.redirect_mode | always / if_required / never | if_required | | autumn.plan_schedule | immediate / end_of_cycle | immediate | | autumn.invoice_mode | Invoice creation mode | draft | | autumn.invoice_id | Stripe invoice id | in_1N... | | autumn.invoice_status | paid / open / draft | paid | | autumn.total_amount | Invoice or preview total (cents) | 2000 | | autumn.currency | Three-letter ISO currency | usd | | autumn.has_prorations | Whether the preview includes prorations | true | | autumn.has_payment_url | Whether a payment URL was returned | true | | autumn.payment_url | Stripe payment URL (only when captureCustomerData: true) | https://checkout.stripe.com/... | | autumn.has_portal_url | Whether a portal URL was returned (openCustomerPortal) | true | | autumn.portal_url | Billing portal URL (only when captureCustomerData: true) | https://billing.stripe.com/... | | autumn.required_action | 3ds_required / payment_method_required / payment_failed | payment_method_required |

autumn.customers.*, autumn.entities.*, autumn.balances.*

CRUD operations emit the identifying keys from the request and, when present, from the response. Notable additions:

  • autumn.entities.create adds autumn.entity_feature_id — distinct from the balance-check autumn.feature_id.
  • autumn.balances.* emits autumn.feature_id, autumn.balance (post-update remaining), and autumn.lock on finalize.

autumn.events.*

| Attribute | Description | Example | | ------------------------ | ---------------------------------------------------------------------- | ------- | | autumn.feature_id | Feature filter (when provided) | api | | autumn.event_name | Event-name filter | send | | autumn.aggregate_range | aggregate range value | 7d | | autumn.event_count | Events returned by list; summed counts across features on aggregate | 42 | | autumn.value | Summed value across all features on aggregate | 1536 | | autumn.period_count | Number of time buckets returned by aggregate | 7 | | autumn.feature_count | Number of features in the aggregate totals | 2 | | autumn.has_more | Whether list has more pages available | false |

autumn.plans.*, autumn.features.*

| Attribute | Description | | --------------------- | --------------------- | | autumn.plan_id | Plan identifier | | autumn.plan_name | Plan display name | | autumn.feature_id | Feature identifier | | autumn.feature_name | Feature display name | | autumn.feature_type | Feature type |

autumn.referrals.*

| Attribute | Description | | ---------------------------- | ------------------------------ | | autumn.referral_program_id | Referral program id | | autumn.referral_code | Referral code created/redeemed |

Usage examples

Feature access control

const result = await autumn.check({
  customerId: "cus_123",
  featureId: "messages",
  requiredBalance: 1,
});

if (result.allowed) {
  console.log(`Remaining: ${result.balance?.remaining}`);
}

Atomic check + track

// Reserve 3 units and record usage in a single call
const result = await autumn.check({
  customerId: "cus_123",
  featureId: "messages",
  requiredBalance: 3,
  sendEvent: true,
});

Usage tracking

await autumn.track({
  customerId: "cus_123",
  featureId: "messages",
  value: 1,
});

Subscribing a customer to a plan

const attach = await autumn.billing.attach({
  customerId: "cus_123",
  planId: "pro",
});

if (attach.paymentUrl) {
  // Redirect the user to complete payment
  console.log(`Payment URL: ${attach.paymentUrl}`);
}

Attaching multiple plans at once

await autumn.billing.multiAttach({
  customerId: "cus_123",
  plans: [
    { planId: "pro" },
    { planId: "addon_seats", featureQuantities: [{ featureId: "seats", quantity: 5 }] },
  ],
});

Cancelling at the end of the billing cycle

await autumn.billing.update({
  customerId: "cus_123",
  planId: "pro",
  cancelAction: "cancel_end_of_cycle",
});

Opening the Stripe billing portal

const { url } = await autumn.billing.openCustomerPortal({
  customerId: "cus_123",
});
// Redirect the user to `url`

Listing and aggregating usage events

// Paginated list of raw events
const events = await autumn.events.list({
  customerId: "cus_123",
  featureId: "messages",
});

// Time-bucketed aggregate
const aggregate = await autumn.events.aggregate({
  customerId: "cus_123",
  featureIds: ["messages"],
  range: "7d",
});

Managing entities (per-seat scoping)

await autumn.entities.create({
  customerId: "cus_123",
  entityId: "seat_42",
  featureId: "seats",
  name: "Seat 42",
});

// Check a per-seat feature balance
await autumn.check({
  customerId: "cus_123",
  entityId: "seat_42",
  featureId: "api_calls",
});

Error handling

Errors are automatically captured in spans with full exception details and the span status is set to ERROR:

try {
  await autumn.check({ customerId: "unknown", featureId: "messages" });
} catch (error) {
  // The span is already marked as failed with the exception recorded
  console.error("Check failed:", error);
}

Integration with OpenTelemetry

This instrumentation integrates seamlessly with your existing OpenTelemetry setup:

import { NodeSDK } from "@opentelemetry/sdk-node";
import { ConsoleSpanExporter } from "@opentelemetry/sdk-trace-node";
import { Resource } from "@opentelemetry/resources";
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const sdk = new NodeSDK({
  resource: new Resource({ [ATTR_SERVICE_NAME]: "my-app" }),
  traceExporter: new ConsoleSpanExporter(),
});

sdk.start();

const autumn = new Autumn({ secretKey: process.env.AUTUMN_SECRET_KEY! });
instrumentAutumn(autumn);

// All Autumn operations now appear in your traces

Best practices

  1. Instrument early — call instrumentAutumn() once when initializing your Autumn client, before any API calls.
  2. Reuse clients — instrument a single Autumn client and reuse it throughout your app.
  3. Context propagation — the instrumentation automatically propagates OpenTelemetry context so Autumn spans nest correctly under parent HTTP / gRPC / DB spans.
  4. Sensitive dataautumn.payment_url and autumn.portal_url are gated behind captureCustomerData: false by default. Keep it off unless your trace pipeline is trusted and can handle payment session tokens.
  5. Scope down sub-resources — if your app only uses the runtime APIs (check, track, billing.*), disable admin sub-resources (instrumentPlans: false, instrumentFeatures: false) to keep the instrumentation surface minimal.

Framework integration

Express

import express from "express";
import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const app = express();
const autumn = new Autumn({ secretKey: process.env.AUTUMN_SECRET_KEY! });
instrumentAutumn(autumn);

app.post("/messages", async (req, res) => {
  const allowed = await autumn.check({
    customerId: req.auth.userId,
    featureId: "messages",
  });
  if (!allowed.allowed) return res.status(402).send("Quota exceeded");

  // ... send the message ...

  await autumn.track({
    customerId: req.auth.userId,
    featureId: "messages",
    value: 1,
  });
  res.json({ ok: true });
});

Next.js

// lib/autumn.ts
import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const autumn = new Autumn({ secretKey: process.env.AUTUMN_SECRET_KEY! });
instrumentAutumn(autumn);

export { autumn };
// app/api/messages/route.ts
import { autumn } from "@/lib/autumn";

export async function POST() {
  const allowed = await autumn.check({
    customerId: "cus_123",
    featureId: "messages",
  });
  if (!allowed.allowed) return new Response("Quota exceeded", { status: 402 });

  await autumn.track({
    customerId: "cus_123",
    featureId: "messages",
    value: 1,
  });
  return Response.json({ ok: true });
}

Hono

import { Hono } from "hono";
import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const app = new Hono();
const autumn = new Autumn({ secretKey: process.env.AUTUMN_SECRET_KEY! });
instrumentAutumn(autumn);

app.post("/messages", async (c) => {
  const allowed = await autumn.check({
    customerId: "cus_123",
    featureId: "messages",
  });
  if (!allowed.allowed) return c.json({ error: "Quota exceeded" }, 402);

  await autumn.track({ customerId: "cus_123", featureId: "messages", value: 1 });
  return c.json({ ok: true });
});

TypeScript support

This package includes full TypeScript definitions. The instrumentation preserves the full type surface of the Autumn SDK:

import { Autumn } from "autumn-js";
import { instrumentAutumn } from "@api-blitz/otel-autumn";

const autumn = new Autumn({ secretKey: "..." });
instrumentAutumn(autumn);

// Full type safety is preserved
const result = await autumn.billing.attach({
  customerId: "cus_123",
  planId: "pro",
  cancelAction: "cancel_end_of_cycle", // TypeScript knows valid values
});

// TypeScript error: Property 'invalidMethod' does not exist
// autumn.billing.invalidMethod();

All semantic-attribute constants are exported for building custom queries and dashboards:

import {
  SEMATTRS_AUTUMN_CUSTOMER_ID,
  SEMATTRS_AUTUMN_PLAN_ID,
  SEMATTRS_AUTUMN_ALLOWED,
  SEMATTRS_BILLING_OPERATION,
} from "@api-blitz/otel-autumn";

License

MIT