@clawobs/plugin-openclaw
v0.1.1
Published
First-party OpenClaw plugin that streams agent, LLM, tool, and session lifecycle telemetry into ClawObs.
Downloads
235
Readme
@clawobs/plugin-openclaw
First-party OpenClaw plugin that streams agent, LLM, tool, and session lifecycle telemetry into ClawObs.
What it captures
- Agent runs via
before_agent_start+agent_end - LLM calls via
llm_input+llm_output - Tool calls via
before_tool_call+after_tool_call - Session lifecycle via
session_start+session_end
Config
You can configure the plugin either through plugins.entries.clawobs.config
inside OpenClaw or with environment variables:
CLAWOBS_INGEST_URLCLAWOBS_API_KEYCLAWOBS_SAMPLE_RATECLAWOBS_FLUSH_ATCLAWOBS_FLUSH_INTERVAL_MSCLAWOBS_REQUEST_TIMEOUT_MSCLAWOBS_MAX_QUEUE_SIZECLAWOBS_CAPTURE_INPUTSCLAWOBS_CAPTURE_OUTPUTSCLAWOBS_CAPTURE_MESSAGES
Minimal config:
{
"plugins": {
"entries": {
"clawobs": {
"enabled": true,
"config": {
"ingestUrl": "http://localhost:4317",
"apiKey": "ck_live_replaceme"
}
}
}
}
}