Hello everyone! it is possible to generate monthly reports for CPU Utilization, disk space utilizations (Filesystems), memory? I'm trying to use JasperReports via API, but I see that trend.get returns poor information.
{ "jsonrpc": "2.0", "method": "trend.get", "params": { "output": [ "itemid", "clock", "num", "value_min", "value_avg", "value_max", ]
I need to extract montly informacion for average, min and max.
example:
| Host | Filesystem | Max | Min | Averge |
------------------------------------------------------------------------------------
| server01 | /home | 3.3 GB | 2.0 GB | 2.5 GB |
| server02 | /home | 4 GB | 1.0 GB | 3.2 GB |
| server01 | /etc | 300 MB |100 MB | 270.MB |
--------------------------------------------------------------------------------------
Is it possible to do this with another tool? kibana elasticsearch, SQL etc, Help please!
regards!
Comment