• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved Server Health Monitor: read data via shell script

Fabrizio

New Pleskian
Hi,
is it possible to read data directly via shell script from Server Health Monitor?
I would like to set up a periodic check and receive useful informations via email.
All data stored in /usr/local/psa/var/health/data/localhost are in rrd format, I hope
there is something else like log text files.

Thank, you
 
Thank you for your reply Aleksandr!
I have already set the xml configuration file to send alarm messages via email.
Now I want to collect statistical information using a dedicated bash script.
I would only need to read Healt Monitor data.
 
Thank you for your reply Aleksandr!
I have already set the xml configuration file to send alarm messages via email.
Now I want to collect statistical information using a dedicated bash script.
I would only need to read Healt Monitor data.

You can read .rdd files via Round Robin Database Tool RRDtool - The Time Series Database, and integrate with your shell script.

for example:
Code:
[root@a10-52-55-195 ~]# rrdtool fetch /usr/local/psa/var/health/data/localhost/load/load.rrd AVERAGE -r 5m -s -30m
                      shortterm             midterm            longterm

1522991100: 1,6000000000e-02 2,2666666667e-02 5,0000000000e-02
1522991400: 2,2000000000e-02 2,7333333333e-02 5,0000000000e-02
1522991700: 8,0000000000e-03 1,5333333333e-02 5,0000000000e-02
1522992000: 0,0000000000e+00 1,0000000000e-02 5,0000000000e-02
1522992300: 0,0000000000e+00 1,0000000000e-02 5,0000000000e-02
1522992600: -nan -nan -nan
1522992900: -nan -nan -nan
[root@a10-52-55-195 ~]#
 
Back
Top