[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r15207: Added two more diagrams for service publication (without Tor (in projects/hidserv/trunk: . doc)
Author: kloesing
Date: 2008-06-13 08:36:42 -0400 (Fri, 13 Jun 2008)
New Revision: 15207
Added:
projects/hidserv/trunk/doc/broken.png
projects/hidserv/trunk/doc/esttime.png
Modified:
projects/hidserv/trunk/doc/report.pdf
projects/hidserv/trunk/doc/report.tex
projects/hidserv/trunk/plot.R
Log:
Added two more diagrams for service publication (without Tor initialization) and durations of broken connections.
Added: projects/hidserv/trunk/doc/broken.png
===================================================================
(Binary files differ)
Property changes on: projects/hidserv/trunk/doc/broken.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: projects/hidserv/trunk/doc/esttime.png
===================================================================
(Binary files differ)
Property changes on: projects/hidserv/trunk/doc/esttime.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: projects/hidserv/trunk/doc/report.pdf
===================================================================
(Binary files differ)
Modified: projects/hidserv/trunk/doc/report.tex
===================================================================
--- projects/hidserv/trunk/doc/report.tex 2008-06-13 12:35:07 UTC (rev 15206)
+++ projects/hidserv/trunk/doc/report.tex 2008-06-13 12:36:42 UTC (rev 15207)
@@ -223,9 +223,7 @@
\begin{figure}
\centering
-%\includegraphics{esttime.png}
-\emph{TODO Karsten: Generate histogram similar to that in
-Figure~\ref{fig:publtime} with establishment times only.}
+\includegraphics[width=0.8\textwidth]{esttime.png}
\caption{Histogram of service establishment times}
\label{fig:esttime}
\end{figure}
@@ -371,9 +369,7 @@
\begin{figure}
\centering
-%\includegraphics{broken.png}
-\emph{TODO Karsten: Generate histogram as in Figure~\ref{fig:duration},
-but only with broken connections}
+\includegraphics[width=0.8\textwidth]{broken.png}
\caption{Histogram of connection durations of breaking connections}
\label{fig:broken}
\end{figure}
Modified: projects/hidserv/trunk/plot.R
===================================================================
--- projects/hidserv/trunk/plot.R 2008-06-13 12:35:07 UTC (rev 15206)
+++ projects/hidserv/trunk/plot.R 2008-06-13 12:36:42 UTC (rev 15207)
@@ -3,17 +3,17 @@
###
### Steven J. Murdoch <http://www.cl.cam.ac.uk/users/sjm217/>
###
-### $Id:$
+### $Id$
###
conntime <- read.csv("conntime.csv",header=TRUE,
comment.char="#",colClasses=c("factor","numeric","numeric"))
publtime <- read.csv("publtime.csv",header=TRUE,
- comment.char="#",colClasses=c("factor","numeric"))
+ comment.char="#",colClasses=c("factor","numeric","numeric"))
reqtimes <- read.csv("reqtimes.csv",header=TRUE,
- comment.char="#",colClasses=c("factor","numeric"))
+ comment.char="#",colClasses=c("factor","factor","numeric"))
restimes <- read.csv("restimes.csv",header=TRUE,
- comment.char="#",colClasses=c("factor","numeric"))
+ comment.char="#",colClasses=c("factor","factor","numeric"))
h <- function(v, n, fn) {
v <- v/1e3
@@ -37,6 +37,8 @@
h(conntime$opentime, "Connection opening time", "opentime")
h(conntime$duration, "Connection duration", "duration")
-h(publtime$publtime, "Publication time", "publtime")
+h(subset(conntime, duration<13500000)$duration, "Connection duration of broken connections", "broken")
+h(publtime$inittime+publtime$publtime, "Publication time", "publtime")
+h(publtime$publtime, "Service establishment time", "esttime")
h(reqtimes$reqtime, "Request time", "reqtime")
h(restimes$restime, "Response time", "restime")