We already know how to periodically collect specific information through SharePlex's sp_ctrl module and Shell scripts as shown below:
bash
while true
do
echo "qstatus" | /splex/splex11/bin/sp_ctrl | awk '{print $7}' >> backlog.out
sleep 5
done
However, even if we want to automate this and view it on a local web page, it is difficult to implement, and even if we do implement it, we are inevitably forced to use sp_ctrl no matter what.
We understand that SharePlex Manager has resolved this through the use of an API — is there any way to use the API without using SharePlex Manager?
Additionally, if there is a method to periodically collect SharePlex's internal information from another server or web page without using the API or the sp_ctrl module, please let us know.