public class com.netflix.hystrix.metric.consumer.HealthCountsStream extends com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream<com.netflix.hystrix.metric.HystrixCommandCompletion, long[], com.netflix.hystrix.HystrixCommandMetrics$HealthCounts>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.hystrix.metric.consumer.HealthCountsStream
  super_class: com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream
{
  private static final java.util.concurrent.ConcurrentMap<java.lang.String, com.netflix.hystrix.metric.consumer.HealthCountsStream> streams;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<Ljava/lang/String;Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;>;

  private static final int NUM_EVENT_TYPES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final rx.functions.Func2<com.netflix.hystrix.HystrixCommandMetrics$HealthCounts, long[], com.netflix.hystrix.HystrixCommandMetrics$HealthCounts> healthCheckAccumulator;
    descriptor: Lrx/functions/Func2;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lrx/functions/Func2<Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;[JLcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 43
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
         1: .line 45
            invokestatic com.netflix.hystrix.HystrixEventType.values:()[Lcom/netflix/hystrix/HystrixEventType;
            arraylength
            putstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.NUM_EVENT_TYPES:I
         2: .line 47
            new com.netflix.hystrix.metric.consumer.HealthCountsStream$1
            dup
            invokespecial com.netflix.hystrix.metric.consumer.HealthCountsStream$1.<init>:()V
            putstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.healthCheckAccumulator:Lrx/functions/Func2;
         3: .line 52
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.netflix.hystrix.metric.consumer.HealthCountsStream getInstance(com.netflix.hystrix.HystrixCommandKey, com.netflix.hystrix.HystrixCommandProperties);
    descriptor: (Lcom/netflix/hystrix/HystrixCommandKey;Lcom/netflix/hystrix/HystrixCommandProperties;)Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.netflix.hystrix.HystrixCommandKey commandKey
        start local 1 // com.netflix.hystrix.HystrixCommandProperties properties
         0: .line 56
            aload 1 /* properties */
            invokevirtual com.netflix.hystrix.HystrixCommandProperties.metricsHealthSnapshotIntervalInMilliseconds:()Lcom/netflix/hystrix/strategy/properties/HystrixProperty;
            invokeinterface com.netflix.hystrix.strategy.properties.HystrixProperty.get:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* healthCountBucketSizeInMs */
        start local 2 // int healthCountBucketSizeInMs
         1: .line 57
            iload 2 /* healthCountBucketSizeInMs */
            ifne 3
         2: .line 58
            new java.lang.RuntimeException
            dup
            ldc "You have set the bucket size to 0ms.  Please set a positive number, so that the metric stream can be properly consumed"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 60
      StackMap locals: int
      StackMap stack:
            aload 1 /* properties */
            invokevirtual com.netflix.hystrix.HystrixCommandProperties.metricsRollingStatisticalWindowInMilliseconds:()Lcom/netflix/hystrix/strategy/properties/HystrixProperty;
            invokeinterface com.netflix.hystrix.strategy.properties.HystrixProperty.get:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iload 2 /* healthCountBucketSizeInMs */
            idiv
            istore 3 /* numHealthCountBuckets */
        start local 3 // int numHealthCountBuckets
         4: .line 62
            aload 0 /* commandKey */
            iload 3 /* numHealthCountBuckets */
            iload 2 /* healthCountBucketSizeInMs */
            invokestatic com.netflix.hystrix.metric.consumer.HealthCountsStream.getInstance:(Lcom/netflix/hystrix/HystrixCommandKey;II)Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
            areturn
        end local 3 // int numHealthCountBuckets
        end local 2 // int healthCountBucketSizeInMs
        end local 1 // com.netflix.hystrix.HystrixCommandProperties properties
        end local 0 // com.netflix.hystrix.HystrixCommandKey commandKey
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    5     0                 commandKey  Lcom/netflix/hystrix/HystrixCommandKey;
            0    5     1                 properties  Lcom/netflix/hystrix/HystrixCommandProperties;
            1    5     2  healthCountBucketSizeInMs  I
            4    5     3      numHealthCountBuckets  I
    MethodParameters:
            Name  Flags
      commandKey  
      properties  

  public static com.netflix.hystrix.metric.consumer.HealthCountsStream getInstance(com.netflix.hystrix.HystrixCommandKey, int, int);
    descriptor: (Lcom/netflix/hystrix/HystrixCommandKey;II)Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // com.netflix.hystrix.HystrixCommandKey commandKey
        start local 1 // int numBuckets
        start local 2 // int bucketSizeInMs
         0: .line 66
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* commandKey */
            invokeinterface com.netflix.hystrix.HystrixCommandKey.name:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.netflix.hystrix.metric.consumer.HealthCountsStream
            astore 3 /* initialStream */
        start local 3 // com.netflix.hystrix.metric.consumer.HealthCountsStream initialStream
         1: .line 67
            aload 3 /* initialStream */
            ifnull 3
         2: .line 68
            aload 3 /* initialStream */
            areturn
         3: .line 71
      StackMap locals: com.netflix.hystrix.metric.consumer.HealthCountsStream
      StackMap stack:
            ldc Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
            dup
            astore 5
            monitorenter
         4: .line 72
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* commandKey */
            invokeinterface com.netflix.hystrix.HystrixCommandKey.name:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.netflix.hystrix.metric.consumer.HealthCountsStream
            astore 6 /* existingStream */
        start local 6 // com.netflix.hystrix.metric.consumer.HealthCountsStream existingStream
         5: .line 73
            aload 6 /* existingStream */
            ifnonnull 12
         6: .line 74
            new com.netflix.hystrix.metric.consumer.HealthCountsStream
            dup
            aload 0 /* commandKey */
            iload 1 /* numBuckets */
            iload 2 /* bucketSizeInMs */
         7: .line 75
            getstatic com.netflix.hystrix.HystrixCommandMetrics.appendEventToBucket:Lrx/functions/Func2;
         8: .line 74
            invokespecial com.netflix.hystrix.metric.consumer.HealthCountsStream.<init>:(Lcom/netflix/hystrix/HystrixCommandKey;IILrx/functions/Func2;)V
            astore 7 /* newStream */
        start local 7 // com.netflix.hystrix.metric.consumer.HealthCountsStream newStream
         9: .line 77
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* commandKey */
            invokeinterface com.netflix.hystrix.HystrixCommandKey.name:()Ljava/lang/String;
            aload 7 /* newStream */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        10: .line 78
            aload 7 /* newStream */
            astore 4 /* healthStream */
        end local 7 // com.netflix.hystrix.metric.consumer.HealthCountsStream newStream
        start local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
        11: .line 79
            goto 13
        end local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
        12: .line 80
      StackMap locals: com.netflix.hystrix.HystrixCommandKey int int com.netflix.hystrix.metric.consumer.HealthCountsStream top java.lang.Class com.netflix.hystrix.metric.consumer.HealthCountsStream
      StackMap stack:
            aload 6 /* existingStream */
            astore 4 /* healthStream */
        end local 6 // com.netflix.hystrix.metric.consumer.HealthCountsStream existingStream
        start local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
        13: .line 71
      StackMap locals: com.netflix.hystrix.HystrixCommandKey int int com.netflix.hystrix.metric.consumer.HealthCountsStream com.netflix.hystrix.metric.consumer.HealthCountsStream java.lang.Class
      StackMap stack:
            aload 5
            monitorexit
        14: goto 17
        end local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
      StackMap locals: com.netflix.hystrix.HystrixCommandKey int int com.netflix.hystrix.metric.consumer.HealthCountsStream top java.lang.Class
      StackMap stack: java.lang.Throwable
        15: aload 5
            monitorexit
        16: athrow
        start local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
        17: .line 83
      StackMap locals: com.netflix.hystrix.HystrixCommandKey int int com.netflix.hystrix.metric.consumer.HealthCountsStream com.netflix.hystrix.metric.consumer.HealthCountsStream
      StackMap stack:
            aload 4 /* healthStream */
            invokevirtual com.netflix.hystrix.metric.consumer.HealthCountsStream.startCachingStreamValuesIfUnstarted:()V
        18: .line 84
            aload 4 /* healthStream */
            areturn
        end local 4 // com.netflix.hystrix.metric.consumer.HealthCountsStream healthStream
        end local 3 // com.netflix.hystrix.metric.consumer.HealthCountsStream initialStream
        end local 2 // int bucketSizeInMs
        end local 1 // int numBuckets
        end local 0 // com.netflix.hystrix.HystrixCommandKey commandKey
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   19     0      commandKey  Lcom/netflix/hystrix/HystrixCommandKey;
            0   19     1      numBuckets  I
            0   19     2  bucketSizeInMs  I
            1   19     3   initialStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
           11   12     4    healthStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
           13   15     4    healthStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
           17   19     4    healthStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
            5   13     6  existingStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
            9   11     7       newStream  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
      Exception table:
        from    to  target  type
           4    14      15  any
          15    16      15  any
    MethodParameters:
                Name  Flags
      commandKey      
      numBuckets      
      bucketSizeInMs  

  public static void reset();
    descriptor: ()V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 89
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.clear:()V
         1: .line 90
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static void removeByKey(com.netflix.hystrix.HystrixCommandKey);
    descriptor: (Lcom/netflix/hystrix/HystrixCommandKey;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.HystrixCommandKey key
         0: .line 93
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* key */
            invokeinterface com.netflix.hystrix.HystrixCommandKey.name:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 94
            return
        end local 0 // com.netflix.hystrix.HystrixCommandKey key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  Lcom/netflix/hystrix/HystrixCommandKey;
    MethodParameters:
      Name  Flags
      key   

  private void <init>(com.netflix.hystrix.HystrixCommandKey, int, int, rx.functions.Func2<long[], com.netflix.hystrix.metric.HystrixCommandCompletion, long[]>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommandKey;IILrx/functions/Func2;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
        start local 1 // com.netflix.hystrix.HystrixCommandKey commandKey
        start local 2 // int numBuckets
        start local 3 // int bucketSizeInMs
        start local 4 // rx.functions.Func2 reduceCommandCompletion
         0: .line 98
            aload 0 /* this */
            aload 1 /* commandKey */
            invokestatic com.netflix.hystrix.metric.HystrixCommandCompletionStream.getInstance:(Lcom/netflix/hystrix/HystrixCommandKey;)Lcom/netflix/hystrix/metric/HystrixCommandCompletionStream;
            iload 2 /* numBuckets */
            iload 3 /* bucketSizeInMs */
            aload 4 /* reduceCommandCompletion */
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.healthCheckAccumulator:Lrx/functions/Func2;
            invokespecial com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream.<init>:(Lcom/netflix/hystrix/metric/HystrixEventStream;IILrx/functions/Func2;Lrx/functions/Func2;)V
         1: .line 99
            return
        end local 4 // rx.functions.Func2 reduceCommandCompletion
        end local 3 // int bucketSizeInMs
        end local 2 // int numBuckets
        end local 1 // com.netflix.hystrix.HystrixCommandKey commandKey
        end local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;
            0    2     1               commandKey  Lcom/netflix/hystrix/HystrixCommandKey;
            0    2     2               numBuckets  I
            0    2     3           bucketSizeInMs  I
            0    2     4  reduceCommandCompletion  Lrx/functions/Func2<[JLcom/netflix/hystrix/metric/HystrixCommandCompletion;[J>;
    Signature: (Lcom/netflix/hystrix/HystrixCommandKey;IILrx/functions/Func2<[JLcom/netflix/hystrix/metric/HystrixCommandCompletion;[J>;)V
    MethodParameters:
                         Name  Flags
      commandKey               final
      numBuckets               final
      bucketSizeInMs           final
      reduceCommandCompletion  

  long[] getEmptyBucketSummary();
    descriptor: ()[J
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
         0: .line 103
            getstatic com.netflix.hystrix.metric.consumer.HealthCountsStream.NUM_EVENT_TYPES:I
            newarray 11
            areturn
        end local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;

  com.netflix.hystrix.HystrixCommandMetrics$HealthCounts getEmptyOutputValue();
    descriptor: ()Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
         0: .line 108
            invokestatic com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.empty:()Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            areturn
        end local 0 // com.netflix.hystrix.metric.consumer.HealthCountsStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/metric/consumer/HealthCountsStream;

  java.lang.Object getEmptyOutputValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.netflix.hystrix.metric.consumer.HealthCountsStream.getEmptyOutputValue:()Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  java.lang.Object getEmptyBucketSummary();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.netflix.hystrix.metric.consumer.HealthCountsStream.getEmptyBucketSummary:()[J
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/netflix/hystrix/metric/consumer/BucketedRollingCounterStream<Lcom/netflix/hystrix/metric/HystrixCommandCompletion;[JLcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;>;
SourceFile: "HealthCountsStream.java"
NestMembers:
  com.netflix.hystrix.metric.consumer.HealthCountsStream$1
InnerClasses:
  public HealthCounts = com.netflix.hystrix.HystrixCommandMetrics$HealthCounts of com.netflix.hystrix.HystrixCommandMetrics
  com.netflix.hystrix.metric.consumer.HealthCountsStream$1