We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0060e commit 7835c09Copy full SHA for 7835c09
README.md
@@ -118,3 +118,8 @@ Test by appending single values by hand:
118
Test of plotting a ping command
119
120
`ping www.toyota.co |awk '{print $7; fflush()}'|awk -F'=' '{print $2; fflush()}' >> data.txt`
121
+
122
+Test of plotting CPU usage (macos):
123
124
+ `while true; do ps -A -o %cpu | awk '{sum+=$1} END {print sum}' >> data.txt; sleep 1; done`
125
0 commit comments