Skip to main content

Observability Lab

Interactive system diagnostics, deep-health checks, and infrastructure monitoring.

Simulated
System Health
Mode: Simulated
This lab runs fully in simulation mode. No backend required.

1. Health SDK Setup

Register system components for automated health polling.

.NET
.NET 8
Node
Node.js
ID
Identity
LOG
Logging
ACL
RBAC
MSG
Notifications
FLG
Flags
AI
AI
STR
Storage
PAY
Payments
SEC
Scanner
DOC
Docs
MTN
Multi-Tenant

Generated Code

// Code generation logic implementation pending...

2. Status Simulator

Test fault-tolerance and automated diagnostic reporting.

Component Status Controllers

Toggle component health to see how the Primus Health Engine responds.

Core Database
ID: database
Distributed Cache
ID: redis
Object Storage
ID: storage
Internal Gateway
ID: api

Diagnostics Console

HEALTHY
GET /api/v1/health/check
Status: 200 Service Available
// Deep Health Trace
{
"status": "healthy",
"details"
: {
"database": {
"status": "healthy","latency": "12ms"
},
"redis": {
"status": "healthy","latency": "2ms"
},
"storage": {
"status": "healthy","latency": "45ms"
},
"api": {
"status": "healthy","latency": "8ms"
}
}
}
System.Diagnostic: Monitoring process initialized for cluster region: "us-east-1"
// Request Details
GET /api/v1/health/check?deep=true
HTTP/1.1 200 OK
{"status":"healthy","components":4,"healthy_count":4}