system_stats
Provides table functions to access system-level statistics for monitoring purpose
Maintainer(s): dentiny
Installing and Loading
INSTALL system_stats FROM community;LOAD system_stats;Example
-- Get memory informationSELECT * FROM sys_memory_info();
-- Get CPU informationSELECT * FROM sys_cpu_info();
-- Get disk informationSELECT * FROM sys_disk_info();
-- Get network informationSELECT * FROM sys_network_info();
-- Get OS informationSELECT * FROM sys_os_info();About system_stats
The system_stats extension provides table functions to access system-level statistics (including memory, CPU, and disk) that can be used for monitoring.
Added Functions
| function_name | function_type | description | comment | examples |
|---|---|---|---|---|
| sys_cpu_info | table | NULL | NULL | |
| sys_disk_info | table | NULL | NULL | |
| sys_memory_info | table | NULL | NULL | |
| sys_network_info | table | NULL | NULL | |
| sys_os_info | table | NULL | NULL |
Overloaded Functions
This extension does not add any function overloads.
Added Types
This extension does not add any types.
Added Settings
This extension does not add any settings.