Topic: Different kind of watch graph (suggestion)
In our server/client application I would like to log the response time from the server and all exceptions and show them in the graph. We found that there is a connection. The servers response time increase after an exception
For now I watch the response time with siMain.WatchDouble('PERF', vTimeInSeconds);
But I think it would be visual better graph to have one vertical line for each value in this case. Now it connect the values horizontally that works fine in other cases.
The same for graph exceptions, one vertical line for each exception to see how they are related to the response times.
I could of course simulate this now with
siMain.WatchInteger('PERF', 0);
siMain.WatchDouble('PERF', vTimeInSeconds);
siMain.WatchInteger('PERF', 0);
for each value. But this generate more values in the graph.
