惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
LaraOwl -The Open-Source, Self-Hosted Monitoring Platform...
Abdelmjid Saber · 2026-06-17 · via DEV Community

Abdelmjid Saber

If you are a Laravel developer, you know how crucial it is to monitor your production applications. However, most commercial application performance monitoring tools can quickly become expensive, and sending sensitive telemetry data to third-party servers might not align with your privacy requirements.

That is why I created LaraOwl—an open-source, self-hosted monitoring platform designed specifically for Laravel. Think of it as your own private APM suite.


What is LaraOwl? 🦉

LaraOwl is a self-hosted monitoring server that collects telemetry from all your Laravel apps. Instead of paying for a hosted service, you deploy the LaraOwl server on your own infrastructure (such as Laravel Cloud or VPS) and pull in a lightweight client package on the apps you want to monitor.

LaraOwl is licensed under Apache 2.0, making it 100% open-source and free to customize.


Key Features

Deep Telemetry & Performance Monitoring

Once you install the laraowl/client package, LaraOwl hooks into the request lifecycle to automatically record:

  • HTTP Requests: Method, path, status codes, request duration, and response sizes.
  • Exceptions & Errors: Automatically grouped with full stack traces, making it easy to track and mark them as resolved.
  • Database Queries: Built-in slow query detection and N+1 query identification to help optimize database performance.
  • Jobs & Queue Activity: Processing status, duration, and job failures.
  • User Tracking: Request history and activity aggregated per-user.

Note: Telemetry is sent asynchronously via Laravel's queue system, keeping it completely off your requests' critical path.

Built-in WAF Analysis & Cloudflare Integration

LaraOwl does more than track performance. It inspects incoming traffic for common security threats, flagging SQL injection (SQLi), cross-site scripting (XSS), and path traversal attempts.

Additionally, it integrates directly with the Cloudflare API, allowing you to block malicious IPs and manage firewall rules right from the LaraOwl dashboard.

Real-Time Dashboard & Multi-Channel Alerts

The dashboard is powered by WebSockets via Laravel Reverb, showing charts and logs updating live as requests and exceptions hit your application.

When something goes wrong, LaraOwl supports uptime & heartbeat monitors and can immediately notify you through:

  • Slack
  • Discord
  • Telegram
  • Email
  • Custom Webhooks

Getting Started in 5 Minutes``

Setting up LaraOwl is extremely straightforward.

1. Setup the LaraOwl Server

The server is a standard Laravel application. Create the project using Composer, configure your .env, and compile the assets:

`bash

Create the project

composer create-project laraowl/laraowl laraowl
cd laraowl

Install dependencies and build assets

npm install
cp .env.example .env
php artisan key:generate
php artisan migrate
npm run build
`

To run the server, ensure you start the three supporting processes in the background (or via a process manager like Supervisor):

`bash

Process queue ingestion

php artisan queue:work

Start WebSockets server

php artisan reverb:start

Run scheduled health and uptime checks

php artisan schedule:work
`

2. Connect Your Monitored Applications

In any Laravel app you want to monitor, pull in the client package and run the installer:

`bash
composer require laraowl/client
php artisan laraowl:install
`

Follow the prompts to configure your API endpoint and token, and you are ready to monitor!


Technical Requirements

  • PHP 8.3+
  • Node.js 18+
  • MySQL 8.0+ or PostgreSQL

Join the Project! 🤝

LaraOwl is fully open-source and actively maintained. I would love to hear your feedback, bug reports, or feature suggestions.

  • ⭐ Star/Fork the project on GitHub
  • 📖 Read the full documentation on our repo.