Comprehensive Guide to MySQL Performance Schema
Introduction to Performance Schema
MySQL Performance Schema is designed to monitor MySQL server operations at a low level, tracking resource consumption and wait states.
Key characteristics include:
Provides real-time inspection of server internal execution during database operation. Tables in the performance_schema database use the Performan ...
Posted on Sat, 08 Aug 2026 16:39:11 +0000 by rodrigocaldeira
Oracle Database Monitoring with Orabbix Integration
First, create a dedicated monitoring user in the Orracle database:
CREATE USER DB_MONITOR
IDENTIFIED BY <YOUR_PASSWORD>
DEFAULT TABLESPACE SYSTEM
TEMPORARY TABLESPACE TEMP
PROFILE DEFAULT
ACCOUNT UNLOCK;
-- Grant necessary roles
GRANT CONNECT TO DB_MONITOR;
GRANT RESOURCE TO DB_MONITOR;
ALTER USER DB_MONITOR DEFAULT ROLE ALL;
-- System ...
Posted on Wed, 05 Aug 2026 16:21:04 +0000 by aaron_mason
Implementing Custom Metrics for MySQL in Zabbix via Percona Plugins
While the standard Percona Monitoring Plugins provide a robust baseline, they often omit critical database performance indicators such as Queries Per Second (QPS), Transactions Per Second (TPS), and Input/Output Operations Per Second (IOPS). To maintain comprehensive observability, the monitoring configuration must be extended to include these ...
Posted on Wed, 22 Jul 2026 16:34:58 +0000 by loveranger
Zabbix Database Monitoring Queries and Resource Analysis
Zabbix Database Schema Overview
For Zabbix 6.0 and later versions, understanding the database schema is essential for crafting efficient monitoring queries. The following queries demonstrate various approaches to extract performance metrics and status information from the Zabbix database.
Comprehensive Host Resource Monitoring
WITH host_info A ...
Posted on Thu, 14 May 2026 03:21:42 +0000 by cleibesouza