Hi @klmd189
To get some metrics/info on resources allocated to your Remote SAS session on Linux, run the following statement once you have established connection
Rsubmit;
Proc Options; Run; /* This will display all your SAS settings on Linux */
EndRsubmit;
You check the Proc Options documentation for further options.
To always display extended metrics for every step/proc executed in your SAS session (Local / Remote) enable the FULLSTIMER option
Options FULLSTIMER;
Rsubmit;
Options FULLSTIMER;
EndRsubmit;
Depending on how open your Remote (Linux) session is, i.e. whether or not you can issue Linux System commands from within SAS
Rsubmit;
Proc Options option=xcmd; Run;
EndRsubmit;
If your remote SAS session allows system commands, then you can try using the Pipe Filename device type with your Linux Command. example
Filename LnuxInfo PIPE "lscpu"; /* You can change the lscpu command with another Linux listing command, such as df -h */
/* The data step below would read the output from the Linux Command and place it in the Log Window */
DATA _NULL_;
INFILE lnuxInfo Lrecl = 500;
INPUT;
PUT _INFILE_;
RUN;
Hope this helps,
Ahmed