Lightweight optional telemetry module for BotForge bots to report runtime stats, usage metrics, and environment details to a central monitoring API.
Download from npm:
npm i @tryforge/forge.telemetry
in your client initialization:
const { ForgeTelemetry } = require("@tryforge/forge.telemetry")
const client = new ForgeClient({
...
extensions: [new ForgeTelemetry()]
})