Re: [R] Reg : R : How to capture cpu usage, memory usage and disks info using R language

2016-10-17 Thread Bob Rudis
You can do something like: https://www.simple-talk.com/sql/performance/collecting-performance-data-into-a-sql-server-table/ and avoid the R step. Let the log perf data directly. On Mon, Oct 17, 2016 at 6:03 AM, jim holtman wrote: > within the VBS script you can easily access

Re: [R] Reg : R : How to capture cpu usage, memory usage and disks info using R language

2016-10-17 Thread jim holtman
within the VBS script you can easily access remote computers. Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. On Mon, Oct 17, 2016 at 5:58 AM, Manohar Reddy wrote: > Thanks Jim. > >

Re: [R] Reg : R : How to capture cpu usage, memory usage and disks info using R language

2016-10-17 Thread Manohar Reddy
Thanks Jim. Actually my requirement is I have ~ 20 servers which are running on windows server family OS,if I want to check any server cpu usge,memory usage or disk info I need to log into every server instead of doing like this if I get that kind of information using R then I can save it

Re: [R] Reg : R : How to capture cpu usage, memory usage and disks info using R language

2016-10-16 Thread jim holtman
Here is a start on the solution. This will create a VBS script that will gather the CPU data and return it in a character vector that you can extract the data from. You can add to it to get the other data you are looking for. > temp <- tempfile(fileext = '.vbs') # get

[R] Reg : R : How to capture cpu usage, memory usage and disks info using R language

2016-10-14 Thread Manohar Reddy
Hi, ​ Is there any possibility that we can capture cpu usage ,memory usage and disks info using R language on *windows family OS* ? I would like to see data that’s looks like ​a​ below Cpu usage : 70 % Memory usage : 80 % Disks: C drive – 40 % full,D dive – 60 %,full