Skip to main content

Real-time CPU monitor. Track performance, temperature, and usage stats instantly.

Project description

cc.StatusQ-kit

Efficient monitoring and management of CPU status.

License: MIT Version test(https://github.com/Rick-torrellas/cc.StatusQ-kit/actions/workflows/main.yaml) Python Version Download docs Ask DeepWiki

📖 Description

StatusQ is a modular, event-driven monitoring engine designed to decouple system data collection from the presentation layer. Built on a robust Event Bus (Pub-Sub) architecture, it allows you to observe system metrics (like CPU, Memory, or Network) through a platform-agnostic core.


Installation

pip install cc.statusq-kit

Usage

from cc_statusq_cpu.core import StatusqCPU, CPUEventBus
from cc_statusq_cpu.capsule import PsutilCPUProvider
from cc_statusq_kit.core.StatusQ import StatusQ
from cc_statusq_kit.core.SystemEventBus import SystemEventBus
from cc_statusq_kit.capsule.CPUAdapter import CPUAdapter
from cc_statusq_kit.capsule.ConsoleAdapter import ConsoleAdapter

# 1. Initialize the Global System Event Bus
global_bus = SystemEventBus()
cpu_provider = PsutilCPUProvider()
# 2. Initialize Sub-system components (Specific to CPU Library)
cpu_bus = CPUEventBus()
cpu_app = StatusqCPU(provider=cpu_provider,event_bus=cpu_bus)
# 3. Create the Orchestrator
orchestrator = StatusQ(event_bus=global_bus)
# 4. Initialize and Register Adapters
# The ConsoleAdapter listens for HealthReportEvents on the global bus
console = ConsoleAdapter(global_bus=global_bus)

# The CPUAdapter translates specific CPU events into global HealthReportEvents
cpu_monitor = CPUAdapter(cpu_app=cpu_app, cpu_bus=cpu_bus, global_bus=global_bus)
orchestrator.register_child(console)
orchestrator.register_child(cpu_monitor)
# --- EXECUTION MODES ---
# MODE A: Single Pulse (Manual check)
print("--- Executing Single Pulse ---")
orchestrator.pulse_all()
# MODE B: Continuous Telemetry Stream (Multi-threaded)
print("\n--- Starting Telemetry Stream (Press Ctrl+C to stop) ---")
try:
    # Starts a background thread for each child to stream data every 2 seconds
    orchestrator.telemetry_stream(interval=2.0)
except KeyboardInterrupt:
    print("\nStopping orchestrator...")

📈 System Flow

  • Registration: Adapters are added to the StatusQ child list.
  • Trigger: When pulse_all() or telemetry_stream() is called, the orchestrator invokes the corresponding methods on the adapters.
  • Translation: The CPUAdapter captures hardware data and publishes a HealthReportEvent to the SystemEventBus.
  • Consumption: The ConsoleAdapter receives the event via the bus and displays the formatted metrics.

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

cc_statusq_kit-0.3.1.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

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

cc_statusq_kit-0.3.1-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file cc_statusq_kit-0.3.1.tar.gz.

File metadata

  • Download URL: cc_statusq_kit-0.3.1.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for cc_statusq_kit-0.3.1.tar.gz
Algorithm Hash digest
SHA256 757877ea488bf66c74d60c757d2246927d3028f7045e0d9a1ee7220486890c95
MD5 ce662ed9b0f10cc3051aaa9325d65741
BLAKE2b-256 0654ab320aa7910d1dfea1215947185badbe3606cd0a5175b1c7e75b084d9cde

See more details on using hashes here.

File details

Details for the file cc_statusq_kit-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: cc_statusq_kit-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for cc_statusq_kit-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b1ad7901bbbd6222a91792c7d2a306abdb77b15a5d3895d9112be46679e5fa7f
MD5 46260fefe898aa40eb3c83ecb92204f5
BLAKE2b-256 574ce56f51fa6ed523be29987e8a0aa9a43e8e0431e69c129bc0cf96d1720f5c

See more details on using hashes here.

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