[Kst] Plotting large datasets in real time

bug.zilla.vynce at neverbox.com bug.zilla.vynce at neverbox.com
Sat May 2 02:31:51 CEST 2009


I have a utility that logs the memory usage of all of the processes on
an embedded device. It currently writes one record to an ASCII CSV log
file every second. Memory usage is logged while running a stability
test which can last for several days. This produces on the order of 5
million samples per day (~50 processes logging once per second).
Memory usage can become a problem with longer runs, but the bigger
problem right now is CPU usage. The CPU remains pegged at 100% and the
Kst UI becomes very laggy.

I've increased the 'plot update timer' to 9999ms (the max) and that
helps a bit, but it still pegs the CPU for several seconds after each
update. This change at least makes the UI more responsive between
updates.

I'm trying to come up with ways to reduce the number of samples and/or
find a more efficient data file format/type. Since memory usage of a
process can often remain fairly stable over time, there is no reason
to log the same values over and over again. So I could just avoid
logging values that haven't changed. In theory, this would
significantly reduce the number of data points while still maintaining
the same resolution. However, due to the structure of a CSV file, it
won't actually help much -- I have to write out a full record to the
log file every time the memory usage of *any* process has changed.

Based on some tests, it looks like most of the time is being spent on
reading/parsing the CSV file. Even if I only create one DataVector
from the file and only plot that one curve, it still uses 100% CPU. I
tried setting it to only read the last n records and/or to only read
every mth record and that doesn't seem to help either.

I may give Dirfiles a try, but I'm not sure I like the idea of having
a whole directory of files for each graph instead of a single file. It
seems like this would get around most of the issues I'm having with
CSV files though.

The logging utility is written in C and I'm free to change the logging
format to anything. I'm using Kst 1.7.0.

Is there a better way for me to handle this scenario? If Kst isn't the
right graphing utility to use for this task, can you suggest others
that may work better?

Thanks,
Michael


More information about the Kst mailing list