Replace indri-runner-logs with general-purpose runner-logs Typer CLI

Rewrite the runner-logs mise task as a Python Typer CLI (uv run --script)
that supports filtering by runner host (indri, ringtail, or all). Both
runners report to the Forgejo server on indri, so log fetching is
unchanged — the new task just adds runner attribution and filtering.

Also add missing #USAGE declarations to docs-review, docs-review-stale,
and service-review so their flags work without the `--` separator, and
update docs references accordingly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-02-22 10:18:52 -08:00
commit 0f1a5400f0
8 changed files with 141 additions and 44 deletions

View file

@ -24,7 +24,7 @@ This reads the `last-reviewed` frontmatter field from each card. Cards without t
To show more entries in the table:
```bash
mise run docs-review -- --limit 30
mise run docs-review --limit 30
```
### Marking a Card as Reviewed

View file

@ -24,15 +24,15 @@ This reads the tracking file at `service-versions.yaml` (repo root) and sorts by
To show more entries in the table:
```bash
mise run service-review -- --limit 30
mise run service-review --limit 30
```
To filter by service type:
```bash
mise run service-review -- --type argocd
mise run service-review -- --type ansible
mise run service-review -- --type hybrid
mise run service-review --type argocd
mise run service-review --type ansible
mise run service-review --type hybrid
```
## Review Process by Service Type

View file

@ -102,7 +102,7 @@ BlumeOps operations are driven by mise tasks. Run `mise tasks` to list all avail
| `docs-review-stale` | Report docs by last-modified date, highlight stale ones |
| `docs-review-tags` | Print frontmatter tag inventory across all docs |
| `docs-review` | Review the most stale doc by last-reviewed date |
| `indri-runner-logs` | View Forgejo workflow logs from local runner |
| `runner-logs` | View Forgejo workflow logs (indri or ringtail runner) |
For ArgoCD operations, use the `argocd` CLI directly:
- `argocd app diff <service>` - Preview changes

View file

@ -4,6 +4,7 @@
# dependencies = ["pyyaml>=6.0", "rich>=13.0.0", "typer>=0.9.0"]
# ///
#MISE description="Review the most stale documentation card by last-reviewed date"
#USAGE flag "--limit <limit>" default="15" help="Number of docs to show in the table"
"""Review the most stale documentation card by last-reviewed date.
Scans all markdown files in docs/ (excluding changelog.d/) and sorts them

View file

@ -4,6 +4,7 @@
# dependencies = ["rich>=13.0.0", "typer>=0.9.0"]
# ///
#MISE description="Report docs by git-last-modified date, highlighting stale ones"
#USAGE flag "--threshold <threshold>" default="180" help="Days before a doc is considered stale"
"""Report documentation files sorted by git-last-modified date.
Scans all markdown files in docs/ (excluding changelog.d/) and shows

View file

@ -1,38 +0,0 @@
#!/usr/bin/env bash
#MISE description="Get logs for a workflow run from indri (local runner only)"
set -euo pipefail
RUN_ID="${1:-}"
if [[ -z "$RUN_ID" ]]; then
echo "Usage: mise run indri-runner-logs <run_id>"
echo ""
echo "Fetches logs for a Forgejo Actions run from indri's local storage."
echo "Only works for runs executed by the indri-host-runner."
echo ""
echo "Recent runs:"
curl -sf "https://forge.ops.eblu.me/api/v1/repos/eblume/blumeops/actions/tasks" | \
jq -r '.workflow_runs[:10] | .[] | " \(.id)\t\(.status)\t\(.workflow_id)\t\(.display_title | .[0:50])"'
exit 1
fi
# Logs are stored as: actions_log/<owner>/<repo>/<hex_subdir>/<run_id>.log.zst
# The hex subdir is the last 2 hex chars of the run_id
ACTIONS_LOG_DIR="/opt/homebrew/var/forgejo/data/actions_log/eblume/blumeops"
# Find the log file - hex subdir is computed from run_id
HEX_SUBDIR=$(printf '%02x' "$RUN_ID")
LOG_FILE="${ACTIONS_LOG_DIR}/${HEX_SUBDIR}/${RUN_ID}.log.zst"
# Check if log exists and decompress
if ssh indri "test -f '$LOG_FILE'"; then
ssh indri "zstd -d -c '$LOG_FILE'"
else
echo "Error: Log file not found for run $RUN_ID"
echo "Expected path: $LOG_FILE"
echo ""
echo "Available logs:"
ssh indri "find '$ACTIONS_LOG_DIR' -name '*.log.zst' -exec basename {} .log.zst \; | sort -n | tail -10"
exit 1
fi

131
mise-tasks/runner-logs Executable file
View file

@ -0,0 +1,131 @@
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.12"
# dependencies = ["httpx>=0.28.0", "rich>=13.0.0", "typer>=0.15.0"]
# ///
#MISE description="Get logs for a Forgejo Actions workflow run (indri or ringtail runner)"
#USAGE arg "<runner>" help="Runner filter: indri, ringtail, or all"
#USAGE arg "[run_id]" help="Run ID to fetch logs for (omit to list recent runs)"
"""Fetch Forgejo Actions workflow logs from indri's log storage.
Both the indri k8s runner and ringtail nix-container-builder runner report
logs back to the Forgejo server on indri. This tool lists recent runs
(optionally filtered by runner) and fetches compressed logs by run ID.
Usage:
mise run runner-logs all # list recent runs from all runners
mise run runner-logs ringtail # list recent ringtail runs
mise run runner-logs all 337 # fetch logs for run 337
"""
import subprocess
import sys
from typing import Annotated
import httpx
import typer
from rich.console import Console
from rich.table import Table
FORGE_API = "https://forge.ops.eblu.me/api/v1"
REPO = "eblume/blumeops"
ACTIONS_LOG_DIR = "/opt/homebrew/var/forgejo/data/actions_log/eblume/blumeops"
# Workflows using the ringtail nix-container-builder runner; everything else
# runs on the indri k8s runner.
RINGTAIL_WORKFLOWS = {"build-container-nix.yaml"}
app = typer.Typer(add_completion=False)
def runner_for_workflow(workflow_id: str) -> str:
return "ringtail" if workflow_id in RINGTAIL_WORKFLOWS else "indri"
def list_runs(runner: str, console: Console) -> None:
resp = httpx.get(
f"{FORGE_API}/repos/{REPO}/actions/tasks",
timeout=15,
)
resp.raise_for_status()
runs = resp.json().get("workflow_runs", [])
table = Table(title=f"Recent runs (filter: {runner})")
table.add_column("ID", style="cyan", no_wrap=True)
table.add_column("Status")
table.add_column("Runner")
table.add_column("Name")
table.add_column("Title")
for run in runs[:20]:
host = runner_for_workflow(run.get("workflow_id", ""))
if runner != "all" and host != runner:
continue
status = run.get("status", "")
style = "green" if status == "success" else "red" if status == "failure" else "yellow"
table.add_row(
str(run["id"]),
f"[{style}]{status}[/{style}]",
host,
(run.get("name") or "")[:40],
(run.get("display_title") or "")[:30],
)
console.print(table)
def fetch_log(run_id: int) -> None:
hex_subdir = f"{run_id:02x}"
log_file = f"{ACTIONS_LOG_DIR}/{hex_subdir}/{run_id}.log.zst"
# All logs live on indri (the Forgejo server) regardless of runner
result = subprocess.run(
["ssh", "indri", f"test -f '{log_file}' && zstd -d -c '{log_file}'"],
capture_output=True,
text=True,
)
if result.returncode == 0:
sys.stdout.write(result.stdout)
else:
typer.echo(f"Error: Log file not found for run {run_id}", err=True)
typer.echo(f"Expected path: {log_file}", err=True)
typer.echo("", err=True)
typer.echo("Available logs:", err=True)
avail = subprocess.run(
[
"ssh",
"indri",
f"find '{ACTIONS_LOG_DIR}' -name '*.log.zst' -exec basename {{}} .log.zst \\; | sort -n | tail -10",
],
capture_output=True,
text=True,
)
typer.echo(avail.stdout, err=True)
raise typer.Exit(1)
@app.command()
def main(
runner: Annotated[
str,
typer.Argument(help="Runner filter: indri, ringtail, or all"),
],
run_id: Annotated[
int | None,
typer.Argument(help="Run ID to fetch logs for (omit to list recent runs)"),
] = None,
) -> None:
"""Get logs for a Forgejo Actions workflow run."""
if runner not in ("indri", "ringtail", "all"):
typer.echo(f"Error: runner must be 'indri', 'ringtail', or 'all', got '{runner}'")
raise typer.Exit(1)
if run_id is None:
list_runs(runner, Console())
else:
fetch_log(run_id)
if __name__ == "__main__":
app()

View file

@ -4,6 +4,8 @@
# dependencies = ["pyyaml>=6.0", "rich>=13.0.0", "typer>=0.9.0"]
# ///
#MISE description="Review the most stale service for version freshness"
#USAGE flag "--limit <limit>" default="15" help="Number of services to show in the table"
#USAGE flag "--type <type>" help="Filter by service type (argocd, ansible, hybrid)"
"""Review the most stale service for version freshness.
Reads ``docs/reference/services/service-versions.yaml`` and sorts services