# # $Log: README,v $ # Revision 1.3 1995/11/04 00:38:27 tamches # added table visi # # Revision 1.2 1994/10/14 10:45:52 tamches # Added barchart # # Revision 1.1 1994/06/01 17:25:27 rbi # Initial documentation # # This directory contains the source code for paradyn visualization clients. Each subdirectory corresponds to a different visi. Visis so far: tclVisi -- A tcl interface for the visi interface that allows programmers to use Paradyn performance data in tcl applications. See the tclVisi/tcl directory for example tcl visis. rthist -- A realtime (i.e. dynamically updated) time plot visi. Written to use the X toolkit and Athena widgets. barchart -- A dynamically updated barChart of metric/focus pairs. Written in tcl (as much as possible) and C++ (when speed matters most--new data callbacks). Bars are drawn with Xlib and use double-buffering. Especially efficient when run remotely (so X server can handle the double-buffering); even when run locally, perturbation is probably acceptable. Many bars can fit on the screen since the resources are drawn on the y axis, meaning labels can fit efficiently without having to be rotated 90 degress. tableVisi -- A dynamically updated table (spreadsheet-like) of metric/focus pairs. Cells are drawn using Xlib and double-buffering. Probably the most compact of all the visis; many metric/focus pairs can be seen on screen at a time, like barchart (and unlike rthist).