summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rwxr-xr-xbin/generate_performance_chart.sh2
4 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/bin/generate_performance_chart.sh b/bin/generate_performance_chart.sh
index b20878817a0..b72311b9338 100755
--- a/bin/generate_performance_chart.sh
+++ b/bin/generate_performance_chart.sh
@@ -9,7 +9,7 @@ gnuplot <<_EOF_ >/dev/null 2>&1
set xlabel 'Date (YYYYMMDD)'
set ylabel 'Throughput (Requests/Second)'
set terminal png small color
- set yrange [0:10000]
+ set yrange [2000:12000]
set output "$2"
plot '$1' using 1:2 title '$3' w l
exit