Replaces LICENSE (GPLv3 -> AGPLv3) and prepends `SPDX-License-Identifier: AGPL-3.0-or-later` to every source file across decnet/, decnet_web/, tests/, scripts/, and tools/. Rationale: closes the GPLv3 ASP loophole so any party operating a modified DECNET as a network service must offer their modified source. Personal copyright (Samuel Paschuan) + inbound=outbound contributions make a future unilateral relicense infeasible. - LICENSE: full AGPL-3.0 text (gnu.org/licenses/agpl-3.0.txt) - COPYRIGHT: project copyright notice - tools/add_spdx_headers.py: idempotent header injector (shebang- and PEP 263-aware) Touches 1565 source files (.py, .ts, .tsx, .js, .jsx, .css, .sh). No behavior change; comments only.
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
import asyncio
|
|
import time
|
|
from typing import Any, Optional
|
|
|
|
from fastapi import APIRouter, Depends
|
|
|
|
from decnet.telemetry import traced as _traced
|
|
from decnet.web.dependencies import require_viewer, repo
|
|
from decnet.web.db.models import StatsResponse
|
|
|
|
router = APIRouter()
|
|
|
|
# /stats is aggregate telemetry polled constantly by the UI and locust.
|
|
# A 5s window collapses thousands of concurrent calls — each of which
|
|
# runs SELECT count(*) FROM logs + SELECT count(DISTINCT attacker_ip) —
|
|
# into one DB hit per window.
|
|
_STATS_TTL = 5.0
|
|
_stats_cache: tuple[Optional[dict[str, Any]], float] = (None, 0.0)
|
|
_stats_lock: Optional[asyncio.Lock] = None
|
|
|
|
|
|
def _reset_stats_cache() -> None:
|
|
global _stats_cache, _stats_lock
|
|
_stats_cache = (None, 0.0)
|
|
_stats_lock = None
|
|
|
|
|
|
async def _get_stats_cached() -> dict[str, Any]:
|
|
global _stats_cache, _stats_lock
|
|
value, ts = _stats_cache
|
|
now = time.monotonic()
|
|
if value is not None and now - ts < _STATS_TTL:
|
|
return value
|
|
if _stats_lock is None:
|
|
_stats_lock = asyncio.Lock()
|
|
async with _stats_lock:
|
|
value, ts = _stats_cache
|
|
now = time.monotonic()
|
|
if value is not None and now - ts < _STATS_TTL:
|
|
return value
|
|
value = await repo.get_stats_summary()
|
|
_stats_cache = (value, time.monotonic())
|
|
return value
|
|
|
|
|
|
@router.get("/stats", response_model=StatsResponse, tags=["Observability"],
|
|
responses={401: {"description": "Could not validate credentials"}, 403: {"description": "Insufficient permissions"}, 422: {"description": "Validation error"}},)
|
|
@_traced("api.get_stats")
|
|
async def get_stats(user: dict = Depends(require_viewer)) -> dict[str, Any]:
|
|
return await _get_stats_cached()
|