public class TunnelHistory extends Object
| Modifier and Type | Field and Description |
|---|---|
(package private) static long[] |
RATES |
static int |
TUNNEL_REJECT_BANDWIDTH
tunnel rejection due to excess bandwidth usage - used for most rejections even if not really for bandwidth
|
static int |
TUNNEL_REJECT_CRIT
tunnel rejection due to system failure - not currently used
|
static int |
TUNNEL_REJECT_PROBABALISTIC_REJECT
probabalistic tunnel rejection due to a flood of requests - infrequent
|
static int |
TUNNEL_REJECT_TRANSIENT_OVERLOAD
tunnel rejection due to temporary cpu/job/tunnel overload - rare
|
| Constructor and Description |
|---|
TunnelHistory(RouterContext context,
String statGroup) |
| Modifier and Type | Method and Description |
|---|---|
void |
coalesceStats() |
RateStat |
getFailedRate() |
long |
getLastAgreedTo()
when the peer last agreed to participate in a tunnel
|
long |
getLastFailed()
when the last tunnel the peer participated in failed
|
long |
getLastRejectedBandwidth()
when the peer last refused to participate in a tunnel complaining of bandwidth overload
|
long |
getLastRejectedCritical()
when the peer last refused to participate in a tunnel with level of critical
|
long |
getLastRejectedProbabalistic()
when the peer last refused to participate in a tunnel probabalistically
|
long |
getLastRejectedTransient()
when the peer last refused to participate in a tunnel complaining of transient overload
|
long |
getLifetimeAgreedTo()
total tunnels the peer has agreed to participate in
|
long |
getLifetimeFailed()
total tunnels the peer has agreed to participate in that were later marked as failed prematurely
|
long |
getLifetimeRejected()
total tunnels the peer has refused to participate in
|
RateStat |
getRejectionRate() |
void |
incrementAgreedTo() |
void |
incrementFailed(int pct)
Define this rate as the probability it really failed
|
void |
incrementProcessed(int processedSuccessfully,
int failedProcessing) |
void |
incrementRejected(int severity) |
void |
load(Properties props) |
void |
reset()
Reset all tunnel history counters and timestamps.
|
void |
store(OutputStream out) |
void |
store(OutputStream out,
boolean addComments)
write out the data from the profile to the stream
|
static final long[] RATES
public static final int TUNNEL_REJECT_BANDWIDTH
public static final int TUNNEL_REJECT_CRIT
public static final int TUNNEL_REJECT_PROBABALISTIC_REJECT
public static final int TUNNEL_REJECT_TRANSIENT_OVERLOAD
public TunnelHistory(RouterContext context, String statGroup)
public void coalesceStats()
public RateStat getFailedRate()
public long getLastAgreedTo()
public long getLastFailed()
public long getLastRejectedBandwidth()
public long getLastRejectedCritical()
public long getLastRejectedProbabalistic()
public long getLastRejectedTransient()
public long getLifetimeAgreedTo()
public long getLifetimeFailed()
public long getLifetimeRejected()
public RateStat getRejectionRate()
public void incrementAgreedTo()
public void incrementFailed(int pct)
pct - = probability * 100public void incrementProcessed(int processedSuccessfully,
int failedProcessing)
public void incrementRejected(int severity)
severity - how much the peer doesnt want to participate in the
tunnel (large == more severe)public void load(Properties props)
public void reset()
public void store(OutputStream out) throws IOException
IOExceptionpublic void store(OutputStream out, boolean addComments) throws IOException
addComments - add comment lines to the outputIOException