Advanced Self-Diagnostic & Autonomous Operations Engine for VJECTS Ecosystem
Designed for extreme resilience, isolation, and intelligent error handling.
- Overview
- Architecture & Features
- Requirements
- Installation
- Configuration
- Available Modules
- Writing Custom Checkers
- Copyright & License
V-Pulse acts as the central nervous system ("Safe Mode") for your application. It operates in a fully isolated try-catch sandbox, guaranteeing that even if the primary database crashes, the .env file is misconfigured, or external microservices go offline, the V-Pulse Dashboard will always load to provide emergency actions.
- Isolated Execution (Sandbox): Fatal application errors do not affect V-Pulse.
- Dynamic Scope (Monolith vs. Ecosystem): Automatically toggles network ecosystem checks based on the project scale.
- Action-Driven Resolution: Provides direct Filament buttons to execute artisan commands (e.g.,
Run Migrations,Clear Cache). - Distributed Master-Agent Handoff: In Ecosystem mode, V-Pulse delegates heavy infrastructure checks to the API processing nodes.
- PHP:
^8.1 - Laravel:
^10.0or^11.0 - Filament PHP:
^3.0
Since this is a private internal package for the VJECTS ecosystem, add the local path repository to your host application's composer.json:
"repositories": [
{
"type": "path",
"url": "packages/vjects/pulse"
}
]Then install via Composer:
composer require vjects/pulseRegister the Plugin in your Filament Panel Provider (usually app/Providers/Filament/AdminPanelProvider.php):
use Vjects\Pulse\PulsePlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
PulsePlugin::make(),
]);
}Note: V-Pulse settings are saved securely in
storage/app/vpulse.jsonto bypass any database dependency issues.
V-Pulse runs tests in a strict cascading priority order.
Checks fundamental infrastructure: Database connection, migration status, and cache availability.
Audits application security configurations:
- Detects if
APP_DEBUGis active in production. - Ensures environment is not left on
local. - Verifies API Rate Limiting (
throttlemiddleware) is active to prevent DDoS and Brute Force attacks.
Pings the Telegram API for notification readiness. If the server is in a restricted region (e.g., Iran), V-Pulse automatically falls back to the configured MTProto/HTTP Proxy tunnel to guarantee alert delivery.
Extracts error stack traces and sends them securely to an LLM provider (OpenAI, Google Gemini, Qwen). The AI Agent analyzes the fatal error and suggests the exact terminal command or code fix directly in the dashboard.
You can extend V-Pulse to monitor custom application logic.
Create a class extending BaseChecker and implement your logic:
namespace App\Checkers;
use Vjects\Pulse\Checkers\BaseChecker;
class PaymentGatewayChecker extends BaseChecker
{
public function getName(): string { return 'Payment Gateway Check'; }
public function getDescription(): string { return 'Pings the banking API.'; }
public function run(): array
{
// Your isolated check logic here
return ['success' => true, 'message' => 'Gateway is online.'];
}
}Register it in your AppServiceProvider:
app('vjects-pulse')->registerChecker(\App\Checkers\PaymentGatewayChecker::class);- Ecosystem Route Scanning: The 500-Error Route Crawler now natively supports dual-server (Main + API) architectures. When
Ecosystem Modeis active, V-Pulse automatically reaches into the API server's workspace to perform parallel HTTP 500 checks, presenting a unified diagnostic report. - Filament Syntax Auto-Correction Compatibility: Resolved deeply rooted
Target class [auth] does not existbugs by restructuring the crawler's application container initialization, bypassing multi-guard conflicts during isolated HTTP simulations.
Note on Future Updates: V-Pulse is now in a stable base functional state. Further customizations and business-logic integrations will be rolled out in upcoming updates. If you encounter any anomalies or errors during production use, please report them to the development team immediately for hotfixing.
© 2026 VJECTS Ecosystem. All rights reserved.
Designed exclusively for VJECTS.com architectures.
Built with a Warrior Mindset.