Giter Club home page Giter Club logo

Comments (17)

nicolargo avatar nicolargo commented on April 27, 2024

Thx for the feedback. What is your PsUtil version ?

To get the version:

python

import psutil
psutil.version

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

I edited the first post.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

Do you have the same issue if you run Glances as root ?

sudo ~/tmp/glances.py

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

Yes, it is still computing.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

Can you try with the version 0.4.1 of PsUtil ?

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

Hem … you have to know, on Gentoo :

  • psutil 0.3.0 is the stable version
  • psutil 0.4.0 is in testing
  • there is no psutil 0.4.1
  • the only available version of pip is the 1.0.2, and is in testing
  • and finaly, pip doesn't want to compile on my pc …

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

I have tested with virtualenv (who provides pip, who provides psutil 0.4.1), and … not better.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

Thx for the PsUtil status on Gentto. I will have a look on the Glances code to check if i can switch to the 0.3.0 version of Glances (the disk IO and network stats are only available in the 0.4.0 or higher version).

Concerning your bug, can you try the following commands:

python

import psutil
for p in psutil.process_iter(): print p
...
Process list...

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

This code works, I see the process list.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

And this one ?

python

import psutil
for p in psutil.process_iter():
... try:
... print p.name+" "+str(p.get_cpu_percent(interval=0))+" "+str(p.get_io_counters().read_bytes)
... except:
... pass
...

Thx again :)

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

Doesn't print anything.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

The problem seems to be in the PsUtil get_cpu_percent or get_io_counters().read_bytes method. In the PSUtil's documentation, it should work in the 0.4.0 version...

Can you try to split the code like this:

python

import psutil
for p in psutil.process_iter():
... try:
... print p.name+" "+str(p.get_cpu_percent(interval=0))
... except:
... pass
...

and

python

import psutil
for p in psutil.process_iter():
... try:
... print p.name+" "+str(p.get_io_counters().read_bytes)
... except:
... pass
...

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

It's the get_io_counters().read_bytes method.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

Ok thanks, i am going to remove the code from Glances because this stat is not used in the current Glances version...

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

I just commit a new beta release (Glance 1.4b2), can you try if the patch solve the issue ?

Just upload the new version here: https://raw.github.com/nicolargo/glances/experimental/src/glances.py

from glances.

erdnaxeli avatar erdnaxeli commented on April 27, 2024

Great ! It works fine, thanks.

from glances.

nicolargo avatar nicolargo commented on April 27, 2024

Thx to you !

from glances.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.