Skip to main content

Curadise monitoring agent - async metrics collection, heartbeats, and remediation

Project description

curadise-agent

Async monitoring agent for Curadise - collects system metrics, sends heartbeats, and executes remote commands with security-first design.

Features

  • Async-first architecture - Built on anyio for high-performance concurrent operations
  • System metrics collection - CPU, memory, disk, network via psutil
  • HTTP health checks - Monitor endpoints with customizable checks
  • Buffered transport - In-memory buffer with optional persistence for reliability
  • Heartbeat service - Regular health reporting with automatic reconnection
  • Remote command execution - Secure sandboxed execution with allowlist/denylist
  • mTLS support - Mutual TLS authentication for secure communication
  • JWT authentication - Token-based auth with automatic refresh
  • Hot-reload configuration - Watch config files for changes without restart
  • Structured logging - JSON logging via structlog for easy parsing
  • Auto-remediation - Server-driven playbooks with detection rules
  • Detection checks - Command, HTTP, process, and log pattern monitoring
  • Signed playbooks - ECDSA-SHA256 signature verification
  • Rate limiting - Configurable cooldowns and max remediations per hour
  • Dry-run mode - Test remediation without executing

Requirements

  • Python 3.12+
  • Linux or macOS

Installation

# Using pip
pip install curadise-agent

# Using uv (recommended)
uv pip install curadise-agent

# From source
git clone https://github.com/pysingh09/curadise-agent.git
cd curadise-agent
uv pip install -e .

Quick Start

  1. Create a configuration file:
cp examples/agent.yaml /etc/curadise/agent.yaml
  1. Set your enrollment token:
export CURADISE_ENROLLMENT_TOKEN="your-token-here"
  1. Run the agent:
curadise-agent run --config /etc/curadise/agent.yaml

CLI Commands

# Run the agent
curadise-agent run --config agent.yaml

# Check agent version
curadise-agent version

# Validate configuration
curadise-agent config validate --config agent.yaml

# Show effective configuration
curadise-agent config show --config agent.yaml

# Register agent with server
curadise-agent register --token <enrollment-token>

# Check agent status
curadise-agent status

# Unregister agent
curadise-agent unregister

Configuration

The agent is configured via YAML files with Jinja2 templating support for environment variables.

Minimal Configuration

server:
  url: "https://curadise.example.com"

auth:
  enrollment_token: "{{ env('CURADISE_ENROLLMENT_TOKEN') }}"

Key Configuration Sections

Section Description
server Server URL, timeout, SSL settings
auth Enrollment token, mTLS certificates
buffer Memory buffer size, persistence, batching
retry Retry attempts, backoff, circuit breaker
heartbeat Heartbeat interval and health metrics
collectors System metrics and HTTP check configuration
executor Command execution settings and allowlist
remediation Auto-remediation settings and playbook controls
logging Log level, format, and file rotation
state Persistent state directory
tags Custom tags for metrics and heartbeats

See examples/agent.yaml for a complete configuration reference.

Remediation Configuration

remediation:
  enabled: false
  sync_interval: 300.0
  check_interval: 60.0
  max_concurrent: 1
  max_remediations_per_hour: 20
  require_signature: true
  dry_run: false
Option Default Description
enabled false Enable auto-remediation service
sync_interval 300.0 Seconds between playbook sync from server
check_interval 60.0 Seconds between detection rule checks
max_concurrent 1 Max concurrent remediation executions
max_remediations_per_hour 20 Rate limit for remediation actions
require_signature true Require ECDSA-SHA256 signatures on playbooks
dry_run false Log actions without executing

Environment Variables

Configuration values can reference environment variables:

auth:
  enrollment_token: "{{ env('CURADISE_ENROLLMENT_TOKEN') }}"

http_checks:
  - url: "https://api.example.com/health"
    headers:
      Authorization: "Bearer {{ env('API_TOKEN') }}"

Architecture

curadise-agent/
├── src/curadise_agent/
│   ├── auth/          # JWT tokens, mTLS, registration
│   ├── collectors/    # Metrics collectors (system, HTTP)
│   ├── config/        # Configuration loading, schema, watcher
│   ├── executor/      # Command execution with sandbox
│   ├── heartbeat/     # Heartbeat service and health checks
│   ├── models/        # Pydantic models (domain, API)
│   ├── remediation/   # Auto-remediation with playbooks
│   ├── state/         # Persistent state management
│   ├── transport/     # HTTP client, buffering, batching
│   └── utils/         # Logging, retry, shutdown handling
└── tests/
    ├── unit/          # Unit tests
    └── integration/   # Integration tests

Development

Setup

# Clone the repository
git clone https://github.com/pysingh09/curadise-agent.git
cd curadise-agent

# Create virtual environment
uv venv
source .venv/bin/activate

# Install with dev dependencies
uv pip install -e ".[dev]"

# Install pre-commit hooks
pre-commit install

Running Tests

# Run all tests
pytest

# Run with coverage
pytest --cov=curadise_agent --cov-report=html

# Run only unit tests
pytest tests/unit/

# Run integration tests
pytest tests/integration/ -m integration

Code Quality

# Linting
ruff check src/ tests/

# Type checking
mypy src/

# Format code
ruff format src/ tests/

Security

The agent implements defense-in-depth security:

Command Execution

  • No shell injection - Uses subprocess_exec, not subprocess_shell
  • Character blocklist - Rejects dangerous shell metacharacters
  • Executable allowlist - Only approved binaries can run

Network Security

  • SSRF prevention - Blocks internal IPs (10.x, 172.16.x, 192.168.x, 127.x, 169.254.x)
  • DNS rebinding protection - Validates resolved IPs before requests
  • Scheme validation - Only HTTP/HTTPS allowed

File System Security

  • Path traversal prevention - Uses realpath() with symlink resolution
  • Allowed path prefixes - Files must be under configured directories

Cryptographic Security

  • Playbook signatures - ECDSA-SHA256 verification required
  • Nonce replay prevention - 24-hour expiration window
  • JWT with refresh - Short-lived tokens with automatic refresh

General

  • mTLS support - Mutual TLS for server authentication
  • No secrets in config - Use environment variables for sensitive data

License

MIT License - see LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

curadise_agent-0.1.3.tar.gz (90.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

curadise_agent-0.1.3-py3-none-any.whl (100.9 kB view details)

Uploaded Python 3

File details

Details for the file curadise_agent-0.1.3.tar.gz.

File metadata

  • Download URL: curadise_agent-0.1.3.tar.gz
  • Upload date:
  • Size: 90.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for curadise_agent-0.1.3.tar.gz
Algorithm Hash digest
SHA256 65959e89aa8aa1ca92ad448c6fdd8f8fd3c1c9b1d056e4e81293cb26ed405956
MD5 c5505a258b6a03dd8744d359dac558c9
BLAKE2b-256 d070c1cff973aebbc1e9d6d970efc2f1f023b357ae11b8cc6119a7bfa821cfd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for curadise_agent-0.1.3.tar.gz:

Publisher: publish.yml on pysingh09/curadise-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file curadise_agent-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: curadise_agent-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 100.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for curadise_agent-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 898e1c9bbcf8524eb0b11a84a4aea4b1fe123479e1bad242aa9734ef6f8cb671
MD5 318e92e5e81fe0fca062445100a4c4bc
BLAKE2b-256 bd35eafcb2382a9ec831de85236055fd1464dc95ee603313d42ff8c3b05fa371

See more details on using hashes here.

Provenance

The following attestation bundles were made for curadise_agent-0.1.3-py3-none-any.whl:

Publisher: publish.yml on pysingh09/curadise-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page