a7a281cb11
First-party plugins (host_agent, http, snmp, traefik, unifi, docker) are now tracked under plugins/ and baked into the image, so they version atomically with core — ending the cross-repo import drift the roundtable->steward rename exposed. History for these files is preserved in the archived Roundtable-plugins repo. Plugin discovery becomes multi-root: PLUGIN_DIR (single) -> PLUGIN_DIRS (bundled first, then external) + PLUGIN_INSTALL_DIR. Bundled ships in the image; third-party plugins still mount at runtime into the external root (STEWARD_PLUGIN_DIR, default /data/plugins) and downloads/installs land there. Bundled shadows external on a name collision. - config.py: load_bootstrap returns plugin_dirs + plugin_install_dir - app.py: iterate PLUGIN_DIRS at the migration + load sites - migration_runner.py: discover_all_in() unions every plugin root - plugin_manager.py: resolve_plugin_path() (pure, first-root-wins); load / install / hot-reload span all roots; installs target the external root - settings/routes.py: _discover_plugins scans all roots, dedup bundled-first - Dockerfile: COPY plugins/ ; docker-compose: drop host bind, document external - tests/test_plugin_dirs.py: resolution, multi-root discovery, bootstrap split Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
2.3 KiB
Python
53 lines
2.3 KiB
Python
"""HTTP monitoring plugin initial tables
|
|
|
|
Revision ID: http_001_initial
|
|
Revises: (none — branch off core via depends_on)
|
|
Create Date: 2026-03-22
|
|
"""
|
|
from typing import Sequence, Union
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
revision: str = "http_001_initial"
|
|
down_revision: Union[str, None] = None
|
|
branch_labels: Union[str, Sequence[str], None] = "http"
|
|
depends_on: Union[str, Sequence[str], None] = ("0004_app_settings",)
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.create_table(
|
|
"http_monitors",
|
|
sa.Column("id", sa.String(36), primary_key=True),
|
|
sa.Column("name", sa.String(128), nullable=False),
|
|
sa.Column("url", sa.String(2048), nullable=False),
|
|
sa.Column("method", sa.String(8), nullable=False, server_default="GET"),
|
|
sa.Column("expected_status", sa.Integer, nullable=False, server_default="200"),
|
|
sa.Column("content_match", sa.String(512), nullable=False, server_default=""),
|
|
sa.Column("headers_json", sa.Text, nullable=False, server_default="{}"),
|
|
sa.Column("timeout_seconds", sa.Integer, nullable=False, server_default="10"),
|
|
sa.Column("check_interval_seconds", sa.Integer, nullable=False, server_default="0"),
|
|
sa.Column("follow_redirects", sa.Boolean, nullable=False, server_default="1"),
|
|
sa.Column("verify_ssl", sa.Boolean, nullable=False, server_default="1"),
|
|
sa.Column("enabled", sa.Boolean, nullable=False, server_default="1"),
|
|
sa.Column("last_checked_at", sa.DateTime(timezone=True), nullable=True),
|
|
sa.Column("created_at", sa.DateTime(timezone=True), nullable=False),
|
|
)
|
|
|
|
op.create_table(
|
|
"http_results",
|
|
sa.Column("id", sa.String(36), primary_key=True),
|
|
sa.Column("monitor_id", sa.String(36), nullable=False, index=True),
|
|
sa.Column("checked_at", sa.DateTime(timezone=True), nullable=False, index=True),
|
|
sa.Column("status_code", sa.Integer, nullable=True),
|
|
sa.Column("response_ms", sa.Float, nullable=True),
|
|
sa.Column("is_up", sa.Boolean, nullable=False, server_default="0"),
|
|
sa.Column("content_matched", sa.Boolean, nullable=True),
|
|
sa.Column("error_msg", sa.String(512), nullable=True),
|
|
sa.Column("tls_expires_at", sa.DateTime(timezone=True), nullable=True),
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_table("http_results")
|
|
op.drop_table("http_monitors")
|