Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
Fix typo in dstat_nfs3_ops (Chris Larsson)
Browse files Browse the repository at this point in the history
  • Loading branch information
dagwieers committed Nov 9, 2010
1 parent a5c4006 commit ef2ba25
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added internal dstat_vm_adv plugin to show advanced VM counters (Pallai Roland)
- Added internal dstat_zones plugin to show zoneinfo counters (Pallai Roland)
- Fix warning message when colors are disabled because TERM is not found (Ulp 660181)
- Fix typo in dstat_nfs3_ops (Chris Larsson)

* 0.7.2 - Real soon now - release 15/06/2010
- Added external dstat_disk_tps plugin to show transactions per second
Expand Down
17 changes: 17 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ prefix = /usr
datadir = $(prefix)/share
mandir = $(datadir)/man

template = dagit.ott

txttargets = $(shell echo *.txt)
htmltargets = $(patsubst %.txt, %.html, $(txttargets))

Expand Down Expand Up @@ -29,3 +31,18 @@ clean:
%.1: %.1.xml
@xmlto man $<

%.xml: %.txt
asciidoc -b docbook -d article -o $@ $<

%.htm: %.txt
asciidoc -s -b html4 -d article -o $@ $<

%.xhtml: %.txt
asciidoc -s -b xhtml11 -d article -o $@ $<

%.tmp.odt: %.xml
#»··-make -C /home/dag/home-made/docbook2odf/ dag-cv
docbook2odf -f --params generate.meta=0 -o $@ $<

%.odt: $(template) %.tmp.odt
unoconv -f odt -t $(template) -o $@ $<
2 changes: 1 addition & 1 deletion docs/dstat-paper.txt
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ into Dstat. A set of 'external' modules exist for:
- mysql5-keys: MySQL keys counters
- mysql-io: MySQL I/O counters
- mysql-ops: MySQL operations counters
- net-mackets: number of packets received and transmitted
- net-packets: number of packets received and transmitted
- nfs3: NFS3 client counters
- nfs3-ops: NFS3 client operations counters
- nfsd3: NFS3 server counters
Expand Down
2 changes: 1 addition & 1 deletion plugins/dstat_nfs3_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self):
self.open('/proc/net/rpc/nfs')

def check(self):
info(1, 'Module %s is still experimental.') % self.filename
info(1, 'Module %s is still experimental.' % self.filename)

def extract(self):
for l in self.splitlines():
Expand Down

0 comments on commit ef2ba25

Please sign in to comment.