summaryrefslogtreecommitdiffhomepage
path: root/plugins/statistics/statistics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/statistics/statistics.cpp')
-rw-r--r--plugins/statistics/statistics.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/statistics/statistics.cpp b/plugins/statistics/statistics.cpp
index 959fd33..8932527 100644
--- a/plugins/statistics/statistics.cpp
+++ b/plugins/statistics/statistics.cpp
@@ -38,14 +38,14 @@ namespace {
std::string statistics{GetServerParam("statistics")};
Tempfile tempStats{".txt"}; // input data
- File::setFile(tempStats.GetPath(), statistics);
+ File::setFile(tempStats.getPath(), statistics);
Tempfile tempPng{".png"}; // output
Tempfile tempGnuplot{".gnuplot"};
std::stringstream s;
s << "set terminal png truecolor\n";
- s << "set output " << tempPng.GetPath() << "\n"; // quotes added automatically for paths
+ s << "set output " << tempPng.getPath() << "\n"; // quotes added automatically for paths
s << "set title \"Webserver Throughput\"\n";
s << "set xlabel \"Time\"\n";
s << "set timefmt \"%s\"\n";
@@ -56,17 +56,17 @@ namespace {
s << "set datafile separator \",\"\n";
s << "set grid\n";
s << "set style fill solid\n";
- s << "plot " << tempStats.GetPath() << " using 1:($4+$5) with boxes title \"Bytes I/O\" lt rgb \"#1132A7\"\n";
- File::setFile(tempGnuplot.GetPath(), s.str());
+ s << "plot " << tempStats.getPath() << " using 1:($4+$5) with boxes title \"Bytes I/O\" lt rgb \"#1132A7\"\n";
+ File::setFile(tempGnuplot.getPath(), s.str());
- int exit_code{system(("gnuplot "s + tempGnuplot.GetPath().generic_string()).c_str())};
+ int exit_code{system(("gnuplot "s + tempGnuplot.getPath().generic_string()).c_str())};
if (exit_code) {
std::cerr << "Error: gnuplot returned " << std::to_string(exit_code) << std::endl;
return HttpStatus("500", "Statistics error"s, SetResponseHeader);
}
SetResponseHeader("content_type", "image/png");
- return File::getFile(tempPng.GetPath());
+ return File::getFile(tempPng.getPath());
}
// returns sum over specified column