Replies: 1 comment 1 reply
-
This is outside the scope of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Help
Description
Hello,
I've recently ported a large workload from a script to a targets pipeline. I need to monitor CPU and memory utilization for this process, to do some optimization work.
In the script world, I simply setup a monitoring shell script like so:
monitor.sh
:And then used
{processx}
to fire the script, run the large compute, and then kill the process.This worked great since the PID of the current R process was the PID I had to monitor.
How can I extend this in the targets framework, with multiple crew workers working through dynamic branches?
Tbh, I don't need need to monitor each individual worker or branch... would love to get an "overall" targets process CPU and Mem consumption over time.
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions