Add call graph fixtures for various languages and scenarios
Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Findings Ledger CI / build-test (push) Has been cancelled
Findings Ledger CI / migration-validation (push) Has been cancelled
Findings Ledger CI / generate-manifest (push) Has been cancelled
Lighthouse CI / Lighthouse Audit (push) Has been cancelled
Lighthouse CI / Axe Accessibility Audit (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Reachability Corpus Validation / validate-corpus (push) Has been cancelled
Reachability Corpus Validation / validate-ground-truths (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Reachability Corpus Validation / determinism-check (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled

- Introduced `all-edge-reasons.json` to test edge resolution reasons in .NET.
- Added `all-visibility-levels.json` to validate method visibility levels in .NET.
- Created `dotnet-aspnetcore-minimal.json` for a minimal ASP.NET Core application.
- Included `go-gin-api.json` for a Go Gin API application structure.
- Added `java-spring-boot.json` for the Spring PetClinic application in Java.
- Introduced `legacy-no-schema.json` for legacy application structure without schema.
- Created `node-express-api.json` for an Express.js API application structure.
This commit is contained in:
master
2025-12-16 10:44:24 +02:00
parent 4391f35d8a
commit 5a480a3c2a
223 changed files with 19367 additions and 727 deletions

View File

@@ -0,0 +1,76 @@
{
"schemaVersion": 39,
"title": "Offline Kit Operations",
"panels": [
{
"type": "timeseries",
"title": "Offline Kit imports by status (rate)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "ops", "decimals": 3 } },
"targets": [
{ "expr": "sum(rate(offlinekit_import_total[5m])) by (status)", "legendFormat": "{{status}}" }
]
},
{
"type": "stat",
"title": "Offline Kit import success rate (%)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "percent", "decimals": 2 } },
"targets": [
{
"expr": "100 * sum(rate(offlinekit_import_total{status=\"success\"}[5m])) / clamp_min(sum(rate(offlinekit_import_total[5m])), 1)"
}
]
},
{
"type": "timeseries",
"title": "Attestation verify latency p50/p95 (success)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "s", "decimals": 3 } },
"targets": [
{
"expr": "histogram_quantile(0.50, sum(rate(offlinekit_attestation_verify_latency_seconds_bucket{success=\"true\"}[5m])) by (le, attestation_type))",
"legendFormat": "p50 {{attestation_type}}"
},
{
"expr": "histogram_quantile(0.95, sum(rate(offlinekit_attestation_verify_latency_seconds_bucket{success=\"true\"}[5m])) by (le, attestation_type))",
"legendFormat": "p95 {{attestation_type}}"
}
]
},
{
"type": "timeseries",
"title": "Rekor inclusion latency p50/p95 (by success)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "s", "decimals": 3 } },
"targets": [
{
"expr": "histogram_quantile(0.50, sum(rate(rekor_inclusion_latency_bucket[5m])) by (le, success))",
"legendFormat": "p50 success={{success}}"
},
{
"expr": "histogram_quantile(0.95, sum(rate(rekor_inclusion_latency_bucket[5m])) by (le, success))",
"legendFormat": "p95 success={{success}}"
}
]
},
{
"type": "timeseries",
"title": "Rekor verification successes (rate)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "ops", "decimals": 3 } },
"targets": [
{ "expr": "sum(rate(attestor_rekor_success_total[5m])) by (mode)", "legendFormat": "{{mode}}" }
]
},
{
"type": "timeseries",
"title": "Rekor verification retries (rate)",
"datasource": "Prometheus",
"fieldConfig": { "defaults": { "unit": "ops", "decimals": 3 } },
"targets": [
{ "expr": "sum(rate(attestor_rekor_retry_total[5m])) by (reason)", "legendFormat": "{{reason}}" }
]
}
]
}