Enhancing Laravel Application Logging with Customization and Persistence
Option 1: Laravel Log Viewer Package
Install via Composer:
composer require rap2hpoutre/laravel-log-viewer
Register the service porvider in config/app.php:
Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Define route access:
Route::get('logs', [\Rap2hpoutre\LaravelLogViewer\LogViewerController::class, 'index']);
Secure a ...
Posted on Fri, 18 Sep 2026 16:10:02 +0000 by zuperxtreme
Monitoring JuiceFS File Systems with Grafana
When a JuiceFS file system is deployed in production, a critical question arises: how to monitor its operational status in real-time? As it may be providing persistent storage support for critical business applications or container workloads, even minor failures or performance degradation can have significant impacts.
JuiceFS publishes its oper ...
Posted on Tue, 15 Sep 2026 15:59:42 +0000 by Danaldinho
Implementing GPU Monitoring with NVIDIA GPU Exporter and Prometheus
Implementing GPU Monitoring with NVIDIA GPU Exporter and Prometheus
Deploying NVIDIA GPU Exporter on GPU Servers
1. Acquire NVIDIA GPU Exporter
wget https://github.com/utkuozdemir/nvidia_gpu_exporter/releases/download/v1.2.0/nvidia_gpu_exporter_1.2.0_linux_x86_64.tar.gz
2. Launch NVIDIA GPU Exporter
tar xf nvidia_gpu_exporter_1.2.0_linux_x ...
Posted on Tue, 08 Sep 2026 16:21:08 +0000 by coolcat
Building a Scalable Monitoring Stack with Prometheus and Grafana
Overview
Prometheus is an open-source systems monitoring and alerting toolkit originally developed at SoundCloud and now a staple within the Cloud Native Computing Foundation (CNCF). It excels at collecting time-series data using a pull-based model, offering a powerful query language (PromQL) and a multi-dimensional data model.
Grafana compleme ...
Posted on Mon, 31 Aug 2026 16:08:25 +0000 by largo
Black-Box Monitoring with Blackbox Exporter and Prometheus
Blackbox Exporter enables black-box probing of targets via HTTP, HTTPS, DNS, TCP, ICMP, and gRPC.
1. Deploying Blackbox Exporter
Deploy using the binary directly or via a container.
When using a container, its recommended to mount the configuration file (/etc/blackbox/blackbox.yml) and expose port 9115.
See the end of this article for a detail ...
Posted on Sun, 30 Aug 2026 16:09:58 +0000 by sillysillysilly
Implementing System Observability with Prometheus, Grafana, and Alertmanager
Prometheus Overview
Prometheus is an open-source systems monitoring and alerting toolkit designed for reliability and scalability. Originally developed at SoundCloud and now a CNCF project, it excels at recording numeric time-series data.
Core Architecture
Prometheus Server: The central component that scrapes and stores time-series data. It op ...
Posted on Thu, 20 Aug 2026 16:35:07 +0000 by ronniebrown
Orchestrating a Full Monitoring Stack with Docker
Deploying the Node Exporter
To begin collecting system-level metrics, deploy the Node Exporter container. This requires mounting host paths to allow the exporter to read proc and sys filesystem statistics.
docker run -d \
--name node-metrics \
--restart unless-stopped \
-p 9100:9100 \
-v "/proc:/host/proc:ro" \
-v "/sys:/host/sys:ro" ...
Posted on Tue, 11 Aug 2026 16:36:06 +0000 by johnSTK
Deploying Prometheus on Kubernetes
Introduction to Prometheus
Foreword
Prometheus is a popular open-source monitoring and alerting system. It is well-suited for recording any numeric time-series data, making it ideal for both machine-centric monitoring and dynamic service-oriented architectures. The project is independent and has a very active community.
Official Documentation: ...
Posted on Tue, 11 Aug 2026 16:26:37 +0000 by PatriotXCountry
Ubuntu Server Performance Monitoring with Prometheus and Grafana
Setting Up Server Performance Monitoring
For effective server performance monitoring, implementing specialized tools becomes essential. Two primary approaches were evaluated:
InfluxDB + Telegraf + Grafana
Prometheus + Node Exporter + Grafana
The InfluxDB documentation appeared inconsistent across versions, making Prometheus the preferred choi ...
Posted on Mon, 27 Jul 2026 16:45:31 +0000 by liquidchild
Managing and Routing Alert Notifications with Alertmanager in Kubernetes
Core Capabilities and Prometheus Integration
Alertmanager functions as the centralized notification engine for the Prometheus ecosystem. While Prometheus excels at metric collection and rule evaluation, Alertmanager specializes in processing, deduplicating, and routing the resulting alerts to appropriate channels. Its primary responsibilities i ...
Posted on Sat, 25 Jul 2026 16:51:27 +0000 by robinas