- Introduced a comprehensive CI job structure for VEX Lens, including build, test, linting, and load testing. - Defined load test parameters and SLOs for VEX Lens API and Issuer Directory. - Created Grafana dashboards and alerting mechanisms for monitoring API performance and error rates. - Established offline posture guidelines for CI jobs and load testing. feat: Implement deterministic projection verification script - Added `verify_projection.sh` script for verifying the integrity of projection exports against expected hashes. - Ensured robust error handling for missing files and hash mismatches. feat: Develop Vuln Explorer CI and Ops Plan - Created CI jobs for Vuln Explorer, including build, test, and replay verification. - Implemented backup and disaster recovery strategies for MongoDB and Redis. - Established Merkle anchoring verification and automation for ledger projector. feat: Introduce EventEnvelopeHasher for hashing event envelopes - Implemented `EventEnvelopeHasher` to compute SHA256 hashes for event envelopes. feat: Add Risk Store and Dashboard components - Developed `RiskStore` for managing risk data and state. - Created `RiskDashboardComponent` for displaying risk profiles with filtering capabilities. - Implemented unit tests for `RiskStore` and `RiskDashboardComponent`. feat: Enhance Vulnerability Detail Component - Developed `VulnerabilityDetailComponent` for displaying detailed information about vulnerabilities. - Implemented error handling for missing vulnerability IDs and loading failures.
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
name: obs-slo
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
prom_url:
|
|
description: "Prometheus base URL"
|
|
required: true
|
|
default: "http://localhost:9090"
|
|
|
|
jobs:
|
|
slo-eval:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python (telemetry schema checks)
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install telemetry schema deps
|
|
run: python -m pip install --upgrade pip jsonschema
|
|
|
|
- name: Run SLO evaluator
|
|
env:
|
|
PROM_URL: ${{ github.event.inputs.prom_url }}
|
|
run: |
|
|
chmod +x scripts/observability/slo-evaluator.sh
|
|
scripts/observability/slo-evaluator.sh
|
|
|
|
- name: Telemetry schema/bundle checks
|
|
env:
|
|
TELEMETRY_BUNDLE_SCHEMA: docs/modules/telemetry/schemas/telemetry-bundle.schema.json
|
|
run: |
|
|
chmod +x ops/devops/telemetry/tests/ci-run.sh
|
|
ops/devops/telemetry/tests/ci-run.sh
|
|
|
|
- name: Upload SLO results
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: obs-slo
|
|
path: out/obs-slo/**
|