Performance data collection and visualization tool

I have a set of performance tests that collects response time information (in CSV format) during startup. In addition, I have a set of monitoring scripts that collect the current application metrics (also in CSV format) on the server. I would like to automate the visualization of these data sets (mainly time series), for example. some web applications where I can download all data sets and get them in a good schedule with weather filtering by time period, displaying data in different slices and correlating with other data sets based on time. Do you guys know something like that?

+4
source share
2 answers

A particularly popular tool for this purpose is rrdtool .

If you are interested in the most sophisticated analytical tools available for time series, I would recommend R for the web interface, RApache or RStudio in server mode, I suspect that this will be redundant if you are primarily interested in a toolbar-style tool.

+2
source

Another option would be a tool called KNIME , an open source integration, processing, analysis, and intelligence platform. It has many time series nodes for processing and analyzing data in a time series, as well as nodes for reading and writing to different data stores.

Probably superfluous for your problem, but may be useful for someone else who needs to analyze data in a time series.

EDIT: I forgot to mention that KNIME also integrated Java, Python, and R scripting nodes, so if you cannot find a way to do something with one of your own nodes, you can run your own script to complete the task.

+1
source

All Articles