Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 1.56 KB

File metadata and controls

29 lines (20 loc) · 1.56 KB

ForgeTelemetry is now deprecated. As of September 22, 2025, ForgeTelemetry has been deprecated. We've collected enough samples to establish accurate resource averages for BotForge bots. A big thank you to all the developers who volunteered to provide these samples by installing ForgeTelemetry! ❤️

ForgeTelemetry

ForgeTelemetry was an optional lightweight telemetry module for BotForge bots to report runtime stats, usage metrics, and environment details to a central monitoring API, developers were able to opt-in to help us get accurate information about the average BotForge bot, to be more specific, runtime data (e.g. RAM usage, guild counts, and other non-sensitive metrics) back to us. This data gave us a realistic picture of how the average BotForge bots performed and helped shape future services like ForgeHost.

@tryforge/forge.telemetry @tryforge/forgescript Discord

How to use

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()]
})