summaryrefslogtreecommitdiff
path: root/rare
AgeCommit message (Collapse)AuthorFilesLines
2014-06-19interrupts-graph.py: make selection largerPeter Wu1-12/+32
Just changing the marker does not make selections more apparent. Increase line thickness and zorder to increase visibility.
2014-06-18interrupts-graph.py: conditionally update domainPeter Wu1-2/+9
Do not update domain if looking at a previous part, or if the new line fits in the current graph. This makes it easier to look at older data while updating the plot.
2014-06-18interrupts-graph.py: add --log and --no-smoothPeter Wu1-1/+8
2014-06-18interrupt-graph.py: fix double update; read fullyPeter Wu1-13/+16
get_diffs() was called in update(), but that would invalidate numbers. Now the input file is fully read (allows moving).
2014-06-18interrupts-graph.py: args for xrange and intervalPeter Wu1-0/+8
2014-06-18interrupts-graph.py: Allow unbounded x historyPeter Wu1-3/+13
2014-06-18interrupts-graph.py: prepare for optional dequePeter Wu1-5/+7
2014-06-18interrupts-graph.py: implement read/write to filePeter Wu1-2/+26
2014-06-18interrupts-graph.py: prepare for writing / reading to filePeter Wu1-10/+38
2014-06-18rare/interrupt-graph.py: connect initial two pointsPeter Wu1-1/+1
2014-06-18rare/interrupts-graph.py: fix X axis numbersPeter Wu1-7/+14
Shift X axis as time progresses.
2014-06-18rare/interrupts-graph.py: thread for data retrievalPeter Wu1-4/+32
This fixes wrong data updates when the UI gets paused (and as a result, the data update gets delayed).
2014-06-17rare/interrupts-graph.py: use different colorsPeter Wu1-1/+17
There are often more than 8 lines, use a different set of colors in an attempt to improve recognition.
2014-06-17rare/interrupt-graph.py: monitor /proc/interruptsPeter Wu1-0/+223
Experiment to visualize updates to /proc/interrupts. "Rarely" used, hence a subfolder "rare".