Skip to main content

HyperProbe Python Agent

Production-grade, non-breaking live debugger and telemetry agent for Python.

HyperProbe allows you to debug running Python applications in real-time without breaking them, restarting them, or altering production traffic. It leverages modern Python's fast, low-overhead monitoring APIs (sys.monitoring) to securely and dynamically extract stack frames, local variables, and logs at targeted lines.

Features

  • Non-Breaking Snapshot Probes: Capture local variables and stack traces dynamically at any line of code.
  • Dynamic Log Probes: Inject live log templates to print formatted output without redeploying code.
  • Counter Probes: Emit a value of 1 whenever a configured source line is reached.
  • Metric Probes: Safely evaluate a numerical Python expression and emit its value.
  • Duration Probes: Measure elapsed monotonic time in milliseconds between two source lines, with optional request correlation.
  • Circular Reference & Deep Object Protection: Memory-safe serialization of deeply nested or cyclic variables.
  • High-Performance Safety Guard: Automatically pauses monitoring and goes idle if CPU/memory boundaries or pause budgets are exceeded.

Metric-family probes

Counter, metric, and duration probes are created through HyperProbe in the same way as snapshot and log probes. No application code changes or additional public SDK calls are required.

Probe Configuration Emitted metric_value
Counter metric_name and one runtime location 1 per matching hit
Metric metric_name, metric_expression, and one runtime location The finite numerical expression result
Duration metric_name, primary and secondary runtime locations, and optional correlation_expression Monotonic elapsed milliseconds

Conditions are evaluated at every configured location. Metric expressions use the same restricted, read-only Python evaluator as conditions and watches. Numerical strings follow Node SDK parseFloat behavior for compatibility; invalid or non-finite values are exported with metric_value set to 0 and a populated capture_error.

Duration correlation expressions must evaluate to a string or number. When omitted or when they evaluate to None, a singleton correlation key is used. Unmatched duration ends are ignored, and pending starts expire after 60 seconds.

Installation

Install the package via pip (or testpypi for testing):

pip install hyperprobe-agent

Usage

Start the agent programmatically at your application's entrypoint:

import os
from hyperprobe import HyperProbe

agent = HyperProbe.start({
    "service_id": "<service-uuid-from-dashboard>",
    "environment": os.getenv("PYTHON_ENV"),
    "broker_url": "https://logger.app.hyperprobe.co",
    "commit_sha": os.getenv("GIT_COMMIT"),
})

Required identity values may also be supplied through the environment variables below. Explicit options take precedence. Initialization failures are reported and the application continues without instrumentation.

Configuration Environment Variables

Configure the agent using the following environment variables:

Variable Description Default
HYPERPROBE_BROKER_URL The URL of the HyperProbe Telemetry Broker. Required
HYPERPROBE_SERVICE_ID UUIDv4 service identifier provided by the HyperProbe dashboard. Required
HYPERPROBE_ALLOW_NON_UUID Set to yes only to allow a legacy non-UUID service identifier. (unset)
HYPERPROBE_ENVIRONMENT Deployment environment name (e.g., production, staging). Required
HYPERPROBE_COMMIT_SHA or GIT_COMMIT Git commit SHA of the running application version. Required
HYPERPROBE_DISABLED Set to YES to explicitly disable the agent. (unset)
HYPERPROBE_SYNC_INTERVAL_MS Rate at which the agent syncs probe definitions from the broker. 60000 (1 min)
HYPERPROBE_FLUSH_INTERVAL_MS Delay before sending telemetry events to the broker. 1000 (1 sec)
HYPERPROBE_MAX_QUEUE_SIZE Maximum number of telemetry events held before flush. 100
HYPERPROBE_HITS_PER_SEC Max snapshot capture requests per second (quota). 10
HYPERPROBE_BANDWIDTH_KB_PER_SEC Max bandwidth limit for telemetry transmissions (quota). 1024 (1 MB)
HYPERPROBE_RPC_TIMEOUT_SEC Deadline for broker RPCs. 10
HYPERPROBE_COOLDOWN_SEC Tracing suspension duration after a RED safety state. 10
HYPERPROBE_MAX_LAG_MS Per-reading scheduler-lag threshold. YELLOW requires 4/10 breaches; RED requires 7/10 breaches or 3/5 readings above 4x the threshold. 50
HYPERPROBE_PAUSE_BUDGET_MS Per-second capture pause budget for the safety monitor. 15
HYPERPROBE_REDACT_KEYS Comma-separated key patterns to redact. password,secret,token,authorization,cookie,key,signature
HYPERPROBE_REDACT_VALUES Comma-separated value patterns to redact. (empty)
HYPERPROBE_MAX_OBJECT_DEPTH Maximum serialized object depth. 3
HYPERPROBE_MAX_ARRAY_LENGTH Maximum serialized array length. 3
HYPERPROBE_STACK_FRAME_DEPTH Maximum captured stack-frame depth. 3
HYPERPROBE_MAX_OBJECT_PROPERTIES Maximum serialized properties per object. 50
HYPERPROBE_MAX_STRING_LENGTH Maximum serialized string length. 1024
HYPERPROBE_DISABLE_SAFE_EVALUATION Set to true to explicitly disable safe evaluation restrictions and allow arbitrary method/function calls in probe expressions. false
HYPERPROBE_FORK_MODE Set to worker for preloaded, prefork servers. The parent defers agent initialization and every worker starts fresh process-local state. none

Programmatic integrations can set allow_non_uuid=True for the same legacy bypass. Without an explicit bypass, a non-UUIDv4 service ID prevents agent startup while the host application continues normally.

Safe Evaluation & Security Considerations

By default, safe evaluation is enabled (HYPERPROBE_DISABLE_SAFE_EVALUATION=false). In safe mode:

  • Method and function calls are strictly restricted to a narrow allowlist of side-effect free standard operations.
  • State mutations, assignments, and arbitrary function invocations (such as database calls, network I/O, file operations, or state modifications) are prevented.

Disabling Safe Evaluation (HYPERPROBE_DISABLE_SAFE_EVALUATION=true):

⚠️ Security Warning: Setting HYPERPROBE_DISABLE_SAFE_EVALUATION=true allows conditions, watch expressions, and log templates to execute arbitrary functions and methods in the host application process. This may lead to unintended side effects, state mutations, performance degradation, or security risks if expressions invoke mutating or blocking operations. Only disable safe evaluation in trusted environments where dynamic method evaluation is strictly required.

Debug logging

Set DEBUG to a comma- or space-separated list of namespaces. Patterns accept *, and exclusions begin with -:

DEBUG=hyperprobe:*                               # all HyperProbe SDK logs
DEBUG=hyperprobe:broker,hyperprobe:monitor      # selected components
DEBUG=hyperprobe:*,-hyperprobe:evaluator         # exclude a component
DEBUG_COLORS=1                                  # force ANSI colors

Without *, a selector is exact: DEBUG=hyperprobe does not match hyperprobe:agent. Use DEBUG=hyperprobe* to enable every component. Set DEBUG_COLORS=0 to disable colors. Logging configuration is read during SDK initialization, so set these variables before starting the process.

Shutdown

Call HyperProbe.shutdown() when the application process stops to close monitoring, workers, and the broker connection cleanly.

For servers that import the application before forking workers, such as Gunicorn with --preload, enable worker fork mode:

agent = HyperProbe.start({
    "service_id": "<service-uuid-from-dashboard>",
    "environment": os.getenv("PYTHON_ENV"),
    "broker_url": "https://logger.app.hyperprobe.co",
    "commit_sha": os.getenv("GIT_COMMIT"),
    "fork_mode": "worker",
})

The prefork parent remains agent-free. Every worker receives a unique agent ID, telemetry queue, gRPC channel, monitoring engine, and set of background threads. Application code running inside those workers must use the spawn process start method rather than creating additional children with fork.

Release files for hyperprobe-agent 1.2.28

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for hyperprobe-agent 1.2.28
File Size Uploaded
hyperprobe_agent-1.2.28.tar.gz 53.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for hyperprobe-agent 1.2.28
File Interpreter ABI Platform
hyperprobe_agent-1.2.28-py3-none-any.whl Python 3 none any Details

Total release size: 89.9 kB

Release files / hyperprobe_agent-1.2.28.tar.gz

Download URL hyperprobe_agent-1.2.28.tar.gz
Size 53.1 kB
Tags Source
SHA-256 checksum
How to use checksums
b29b42676322d0f47e71ab75bb559d763f5759fa781298dd878a611c8dd3cece
BLAKE2b-256 checksum
How to use checksums
9bd146641176a5f481bf9e025b45436632f9fcfd0a7b1ce76caaad4d041313f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / hyperprobe_agent-1.2.28-py3-none-any.whl

Download URL hyperprobe_agent-1.2.28-py3-none-any.whl
Size 36.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
7bf4a9f291b0a4cb800422234f74c413121edbaad5b77a8b32b93a7611508b03
BLAKE2b-256 checksum
How to use checksums
0a9d01c75cb4cb9cdb37f179f77bb5dc12415f43930ad9a10e5d8950483c3e74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page