/[projects]/miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/AccountingCircuitBreaker.java
ViewVC logotype

Diff of /miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/AccountingCircuitBreaker.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 624 by torben, Mon Mar 8 09:46:10 2010 UTC revision 864 by torben, Sun Jun 20 21:54:53 2010 UTC
# Line 6  import java.util.concurrent.atomic.Atomi Line 6  import java.util.concurrent.atomic.Atomi
6  public class AccountingCircuitBreaker extends CircuitBreaker {  public class AccountingCircuitBreaker extends CircuitBreaker {
7    
8          private AtomicInteger tripCount = new AtomicInteger(0); // how many times ahs the CB tripped            private AtomicInteger tripCount = new AtomicInteger(0); // how many times ahs the CB tripped  
9            private AtomicInteger retripCount = new AtomicInteger(0);  
10          private AtomicInteger blockCount = new AtomicInteger(0); //how many times has this CB blocked a call that would otherwise go to the backend          private AtomicInteger blockCount = new AtomicInteger(0); //how many times has this CB blocked a call that would otherwise go to the backend
11          private AtomicInteger totalFailureCount = new AtomicInteger(0); //how many times has the backend thrown an exception          private AtomicInteger totalFailureCount = new AtomicInteger(0); //how many times has the backend thrown an exception
12          private AtomicInteger totalCallCount = new AtomicInteger(0);          private AtomicInteger totalCallCount = new AtomicInteger(0);
13                    
14          private AtomicLong lastTrip = new AtomicLong(0);          private AtomicLong lastTrip = new AtomicLong(0);
15            private AtomicLong lastRetrip = new AtomicLong(0);
16          private AtomicLong lastFailure = new AtomicLong(0);          private AtomicLong lastFailure = new AtomicLong(0);
17          private AtomicLong lastReset = new AtomicLong(0);          private AtomicLong lastReset = new AtomicLong(0);
18                    
# Line 48  public class AccountingCircuitBreaker ex Line 50  public class AccountingCircuitBreaker ex
50                  lastTrip.set( System.currentTimeMillis() );                  lastTrip.set( System.currentTimeMillis() );
51          }          }
52                    
53            @Override
54            public void retripBreaker() {
55                    super.retripBreaker();
56                    retripCount.incrementAndGet();
57                    lastRetrip.set( System.currentTimeMillis() );
58            }
59                    
60                    
61          @Override          @Override
# Line 60  public class AccountingCircuitBreaker ex Line 68  public class AccountingCircuitBreaker ex
68                  return tripCount.get();                  return tripCount.get();
69          }          }
70                    
71            public int getRetripCount() {
72                    return retripCount.get();
73            }
74    
75          public int getBlockCount() {          public int getBlockCount() {
76                  return blockCount.get();                          return blockCount.get();        
77          }          }
# Line 76  public class AccountingCircuitBreaker ex Line 88  public class AccountingCircuitBreaker ex
88                  return lastTrip.get();                  return lastTrip.get();
89          }          }
90                    
91            public long getLastRetrip() {
92                    return lastRetrip.get();
93            }
94    
95          public long getLastFailure() {          public long getLastFailure() {
96                  return lastFailure.get();                  return lastFailure.get();
97          }          }
# Line 90  public class AccountingCircuitBreaker ex Line 106  public class AccountingCircuitBreaker ex
106                    
107          public void resetCounters() {          public void resetCounters() {
108                  tripCount.set(0);                  tripCount.set(0);
109                    retripCount.set(0);
110                  blockCount.set(0);                  blockCount.set(0);
111                  totalFailureCount.set(0);                  totalFailureCount.set(0);
112                  totalCallCount.set(0);                  totalCallCount.set(0);
113                  lastTrip.set(0);                  lastTrip.set(0);
114                    lastRetrip.set(0);
115                  lastReset.set(0);                  lastReset.set(0);
116                  lastFailure.set(0);                  lastFailure.set(0);
117                                    

Legend:
Removed from v.624  
changed lines
  Added in v.864

  ViewVC Help
Powered by ViewVC 1.1.20