Browse Source

Fix README.

check-vt100
Peter Gielda 7 years ago
parent
commit
6cdf707e63
  1. 4
      README.md
  2. 2
      sargraph.py

4
README.md

@ -4,7 +4,7 @@ This is a simple python tool that uses sysstat (sar) to plot cpu and ram usage.
Best used with screen: Best used with screen:
```console ```
$ screen -dmSL chart python sargraph.py $ screen -dmSL chart python sargraph.py
$ sleep 1 $ sleep 1
$ screen -S chart -X stuff "label1\n" $ screen -S chart -X stuff "label1\n"
@ -16,7 +16,7 @@ $ sleep 3
``` ```
Or just: Or just:
```console ```
$ python sargraph.py $ python sargraph.py
# wait 1 sec # wait 1 sec
# type label1\n # type label1\n

2
sargraph.py

@ -124,7 +124,7 @@ labels = []
f.write("# machine: %s, cpu count: %d\n" % (uname, cpus)) f.write("# machine: %s, cpu count: %d\n" % (uname, cpus))
while 1: while 1:
rlist, _, _ = select([p.stdout, sys.stdin], [], [], 0.5) rlist, _, _ = select([p.stdout, sys.stdin], [], [], 1)
now = datetime.now() now = datetime.now()
if sys.stdin in rlist: if sys.stdin in rlist:
label_line = sys.stdin.readline().replace("\n", "") label_line = sys.stdin.readline().replace("\n", "")

Loading…
Cancel
Save