octoperf-monitoring

octoperf-monitoring is a skill for Claude Code from OctoPerf/octoperf-claude-plugins. It costs 0 tokens per session (4,356 once invoked), scanned A, original, Apache-2.0.

A monitor for collecting infrastructure measurements while an OctoPerf load test is running. OctoPerf tests how a system behaves under many users, while infrastructure measurements show what its servers and services are doing during the test.

In plain words
What is it for?
Use it to collect operating-system, database, JMX, Prometheus, New Relic, web-server, application-server, or service-level measurements during scenario runs. It supports configuring project monitors through reachable workspace agents.
Why use it?
It helps connect slow or failed test results with activity on the monitored host, database, web server, application server, or other target. It can also check whether the monitoring connection is reachable.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the octoperf plugin — 20 skills, 1 MCP server shipped together

Good fit Use it to collect operating-system, database, JMX, Prometheus, New Relic, web-server, application-server, or service-level measurements during scenario runs. It supports configuring project monitors through reachable workspace agents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/octoperf/octoperf-claude-plugins/octoperf-monitoring
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OctoPerf/octoperf-claude-plugins --skill octoperf-monitoring
Clone the repo
git clone --depth 1 https://github.com/OctoPerf/octoperf-claude-plugins

Made for: Claude Code.

Or install octoperf, the plugin that ships this one along with the rest of its 20 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for octoperf-monitoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring/github.svg)](https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring)
Your own site
<a href="https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring"><img src="https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for octoperf-monitoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring"><img src="https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-monitoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,356 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.04356
Opus 5 $0.00000 $0.02178
Sonnet 5 $0.00000 $0.00871
Haiku 4.5 $0.00000 $0.00436

Measured 12d ago against content hash c5ea8d6119ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

octoperf-monitoring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/octoperf/skills/octoperf-monitoring/SKILL.md · 317 lines

How it starts

The opening of the file, as written. The whole thing — 317 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Monitoring — watch servers during a load test

Collect infrastructure metrics (OS, database, web/app server, JMX, Prometheus, New Relic, SLA) while a scenario runs, so a slow or failing test can be tied to what the monitored systems were doing. Read this before creating or configuring a monitor.

Mental model

  • A monitor (MonitorConnection) watches one external target — a Linux host, a database, nginx/Tomcat, a JMX endpoint, … — during runs of a project's scenarios. Monitors are project-scoped.
  • A monitor runs through an agent: the agent opens the connection (SSH / JDBC / JMX / HTTP) to the target and samples counters. Agents are workspace-scoped — pick one from the workspace that owns the monitor's project.
  • Reachability is the whole point: the chosen agent must be able to reach the target (same network, DNS, ports). For a Linux host the agent often runs on that host (SSH to localhost); for a database it must reach the JDBC endpoint. An agent that can't reach the target only produces connection errors — that is what check_monitor_connection catches.
  • Credentials are write-only: they are sent when creating a monitor and are never returned by get_monitor / list_monitors_by_project.

How a monitor fits a run (why it matters)

You don't attach a monitor to a scenario — it's automatic:

  • Every ENABLED monitor of the project is collected on every scenario run of that project (disable one with update_monitor to exclude it from runs without deleting it). There is no per-scenario wiring.
  • Most monitors ship with default counters and default thresholds; a breached threshold raises a monitoring alarm during the run. The SLA monitor is the same mechanism applied to the test's own metrics (response time, error rate) — perf alerts while the test runs.
  • The values and alarms show up in the bench report (live and final). Read them with get_report_monitors_table_values (one row per connection of the run: its counters, its alarm count, the worst severity), get_report_threshold_alarms (each breach), get_report_textual_monitors (string-valued counters), and the generic get_report_*_values tools for the numeric curves.
  • Adding a monitoring chart to a report is an MCP move too, not a UI-only one: patch_bench_report accepts a LineChartReportItem whose metric is {id: MONITORING, type: NUMBER_COUNTER} filtered on connectionName and counterPath — both are tag values get_report_monitors_table_values hands back ready to use. See octoperf://skills/report-item-editing.

Read the full file on GitHub · 317 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 317 lines · 0 tokens per session scan A c5ea8d6119ee

Subscribe to this mod's changes

octoperf-monitoring is a skill published in the GitHub repository OctoPerf/octoperf-claude-plugins (0 stars, last pushed 5d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 4,356 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

forge-app-review

Performs a lightweight pre-release readiness review of Atlassian Forge apps across manifest/module wiring, architecture, runtime compatibility, dependency posture, tests, deploy readiness, and obvious security, cost, or reliability smells. Use when the user asks "review my Forge app", "pre-deploy check", "is this app…

atlassian/forge-skills · 134 tokens

run-iteration-eval

Run the Logic-Lens content-eval pipeline for one iteration and produce a scored summary.json — use to measure a skill change. Wraps scripts/run-content-evals.sh (runner, costs tokens) and scripts/grade-iteration.py (grader, free, re-runnable). ALWAYS sync the plugin cache first. Use when the user wants to "run the…

hyhmrright/logic-lens · 108 tokens

spec-driven-dev

Use when starting any non-trivial feature, refactor, or new project that will touch more than one file. Drives an AI coding agent through a gated Spec → Plan → Build → Test → Review → Ship lifecycle so work is specified before it is built, verified before it is reviewed, and reviewed before it ships.

LichAmnesia/lich-skills · 68 tokens

iterate-skill

Run the Logic-Lens skill-improvement loop end to end — baseline → diagnose failures → edit → sync cache → re-eval → verify net gain → iterate until clean. Use whenever the goal is to RAISE a skill's eval score or fix a failing eval mode: "improve logic-review", "the format compliance is failing, fix it", "iterate on…

hyhmrright/logic-lens · 183 tokens

sumup-testing

Set up and run SumUp sandbox tests. Use when configuring a SumUp test merchant, picking test cards, triggering deliberate failure (amount = 11), or building a SumUp end-to-end test harness.

sumup/sumup-skills · 47 tokens

python-testing

Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements.

Jamkris/everything-gemini-code · 24 tokens