Skip to content

Commit

Permalink
A few docs and example updates for release 0.6.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
dagwieers committed Dec 12, 2006
1 parent 0fea0c8 commit c5f0adc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion docs/counter-rollovers.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
All you ever wanted to know about counter-rollovers and dstat
=============================================================


What you need to know about counter rollovers
---------------------------------------------
Unfortunately, dstat is susceptible for counter rollovers, which may give
Expand Down
4 changes: 2 additions & 2 deletions docs/performance.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Dstat performance

Introduction
------------
Since dstat is written in python, it's not optimized for performance.
Since dstat is written in python, it is not optimized for performance.

When doing performance analysis, it's always important to verify that
When doing performance analysis, it is always important to verify that
the monitoring tool is not messing with the performance numbers.
(eg. writing to disk, using cpu/memory/network, increasing load)

Expand Down
1 change: 0 additions & 1 deletion docs/plugins.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ external plugins exist:

dstat_app - most expensive process
dstat_battery - battery in percentage (needs ACPI)
dstat_clock - human-readable clock
dstat_cpufreq - CPU frequency in percentage (needs ACPI)
dstat_dbus - dbus connections (needs python-dbus)
dstat_freespace - disk usage on per filesystems
Expand Down
2 changes: 1 addition & 1 deletion examples/mstat.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

### Load stats
stats = []
for o in (dstat.dstat_time(), dstat.dstat_cpu(), dstat.dstat_mem(), dstat.dstat_load(), dstat.dstat_disk(), dstat.dstat_sys()):
for o in (dstat.dstat_epoch(), dstat.dstat_cpu(), dstat.dstat_mem(), dstat.dstat_load(), dstat.dstat_disk(), dstat.dstat_sys()):
try: o.check()
except Exception, e: print e
else: stats.append(o)
Expand Down

0 comments on commit c5f0adc

Please sign in to comment.