Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #44554 > unrolled thread
| Started by | Dave Angel <davea@davea.name> |
|---|---|
| First post | 2013-04-30 12:38 -0400 |
| Last post | 2013-04-30 12:38 -0400 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: python process accounting Dave Angel <davea@davea.name> - 2013-04-30 12:38 -0400
| From | Dave Angel <davea@davea.name> |
|---|---|
| Date | 2013-04-30 12:38 -0400 |
| Subject | Re: python process accounting |
| Message-ID | <mailman.1187.1367339944.3114.python-list@python.org> |
On 04/30/2013 12:25 PM, Rita wrote:
> Hi,
>
> I was wondering if it possible to write a python wrapper which will account
> my processes. I would like to account for all the children processes (fork)
> by looking at their /proc/<pid> info. Such as memory, io, open files,
> stats.
>
> So, instead of me running "/bin/sleep 10", i would like to run it as
> "pywrap.py /bin/sleep 10" and it will do an exec /bin/sleep 10 and do a
> periodic snapshot for whats in /proc/<pid>/stats.
>
>
I only understood a quarter of that. But if you want to sleep, why not
just call time.sleep ?
import os
while True:
os.sleep(10)
... do some stuff with the processes.
If you want help in the other portion, you'd better explain:
<<<<<<
Running Python xx.xx in Operating System yy.
From the bash prompt, I'd like to do:
zzzzz, and zzzz
And here's what I mean by child processes. Children of the current bash
shell? Or what?
<<<<<<
--
DaveA
Back to top | Article view | comp.lang.python
csiph-web