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

@volcengine/apmplus-openclaw-plugin

v0.1.25

Published

OpenClaw Plugin for reporting traces via OpenTelemetry

Readme

APMPlus OpenClaw Plugin

OpenClaw 插件,通过 OpenTelemetry 将 OpenClaw 的可观测性数据(Traces、Metrics、Logs)上报至火山引擎 APMPlus 平台。

前置条件

安装

方式一:使用一键安装 CLI(推荐)

npx @volcengine/apmplus-openclaw-plugin-onboard-cli

按提示输入 Region、APP Key、ServiceName 即可完成安装与配置。

方式二:手动安装

openclaw plugins install @volcengine/apmplus-openclaw-plugin

安装后需在 ~/.openclaw/openclaw.json 中配置插件参数。

配置

openclaw.jsonplugins.entries.apmplus-openclaw-plugin.config 中配置:

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | endpoint | string | 是 | OTLP 上报地址,格式:http://apmplus-{region}.volces.com/server_collect/third_party/open_telemetry/v2/{appKey} | | serviceName | string | 否 | 服务名称,默认 openclaw | | headers | object | 否 | 自定义请求头(如 Authorization) | | exportIntervalMillis | number | 否 | Metrics 上报间隔(毫秒),默认 30000 | | debug | boolean | 否 | 是否开启调试日志,默认 false | | log | boolean | 否 | 是否上报日志,默认 true | | reportDiagnosticsLog | boolean | 否 | 是否开启诊断日志,默认 false | | diagnosticsLogEndpoint | string | 否 | 诊断日志自定义 OTLP HTTP 上报地址,若不设置则默认回退到 endpoint | | allowUserDetailInfoReport | boolean | 否 | 是否上报所有 span attr信息,将包含 e.g. user_id, chat detail, chat log 等,默认 true | | trace | boolean | 否 | 是否启用 trace 上报,默认 true | | metric | boolean | 否 | 是否启用 metric 上报,默认 true | | openclawNativeMetrics | boolean | 否 | 是否启用 OpenClaw 原生指标,默认 true | | extraResourceAttributes | object | 否 | 自定义 Resource Attributes,如 {"env": "prod"} |

配置示例

{
  "plugins": {
    "allow": ["apmplus-openclaw-plugin"],
    "entries": {
      "apmplus-openclaw-plugin": {
        "enabled": true,
        "config": {
          "endpoint": "http://apmplus-cn-beijing.volces.com/server_collect/third_party/open_telemetry/v2/your-app-key",
          "serviceName": "my-openclaw-service"
        }
      }
    }
  }
}

支持的 Region

| region_id | 名称 | |-----------|------| | cn-beijing | 华北2(北京) | | cn-shanghai | 华东2(上海) | | cn-guangzhou | 华南1(广州) | | cn-hongkong | 中国香港 | | ap-southeast-1 | 亚太东南(柔佛) |

License

Apache-2.0,详见 LICENCE