public class com.netflix.hystrix.HystrixCommandMetrics$HealthCounts
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.hystrix.HystrixCommandMetrics$HealthCounts
  super_class: java.lang.Object
{
  private final long totalCount;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long errorCount;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int errorPercentage;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final com.netflix.hystrix.HystrixCommandMetrics$HealthCounts EMPTY;
    descriptor: Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=0, args_size=0
         0: .line 402
            new com.netflix.hystrix.HystrixCommandMetrics$HealthCounts
            dup
            lconst_0
            lconst_0
            invokespecial com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.<init>:(JJ)V
            putstatic com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.EMPTY:Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(long, long);
    descriptor: (JJ)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
        start local 1 // long total
        start local 3 // long error
         0: .line 392
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 393
            aload 0 /* this */
            lload 1 /* total */
            putfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
         2: .line 394
            aload 0 /* this */
            lload 3 /* error */
            putfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorCount:J
         3: .line 395
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
            lconst_0
            lcmp
            ifle 6
         4: .line 396
            aload 0 /* this */
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorCount:J
            l2d
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
            l2d
            ddiv
            ldc 100.0
            dmul
            d2i
            putfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorPercentage:I
         5: .line 397
            goto 7
         6: .line 398
      StackMap locals: com.netflix.hystrix.HystrixCommandMetrics$HealthCounts long long
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorPercentage:I
         7: .line 400
      StackMap locals:
      StackMap stack:
            return
        end local 3 // long error
        end local 1 // long total
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            0    8     1  total  J
            0    8     3  error  J
    MethodParameters:
       Name  Flags
      total  
      error  

  public long getTotalRequests();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
         0: .line 405
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
            lreturn
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;

  public long getErrorCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
         0: .line 409
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorCount:J
            lreturn
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;

  public int getErrorPercentage();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
         0: .line 413
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorPercentage:I
            ireturn
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;

  public com.netflix.hystrix.HystrixCommandMetrics$HealthCounts plus(long[]);
    descriptor: ([J)Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=16, args_size=2
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
        start local 1 // long[] eventTypeCounts
         0: .line 417
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
            lstore 2 /* updatedTotalCount */
        start local 2 // long updatedTotalCount
         1: .line 418
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorCount:J
            lstore 4 /* updatedErrorCount */
        start local 4 // long updatedErrorCount
         2: .line 420
            aload 1 /* eventTypeCounts */
            getstatic com.netflix.hystrix.HystrixEventType.SUCCESS:Lcom/netflix/hystrix/HystrixEventType;
            invokevirtual com.netflix.hystrix.HystrixEventType.ordinal:()I
            laload
            lstore 6 /* successCount */
        start local 6 // long successCount
         3: .line 421
            aload 1 /* eventTypeCounts */
            getstatic com.netflix.hystrix.HystrixEventType.FAILURE:Lcom/netflix/hystrix/HystrixEventType;
            invokevirtual com.netflix.hystrix.HystrixEventType.ordinal:()I
            laload
            lstore 8 /* failureCount */
        start local 8 // long failureCount
         4: .line 422
            aload 1 /* eventTypeCounts */
            getstatic com.netflix.hystrix.HystrixEventType.TIMEOUT:Lcom/netflix/hystrix/HystrixEventType;
            invokevirtual com.netflix.hystrix.HystrixEventType.ordinal:()I
            laload
            lstore 10 /* timeoutCount */
        start local 10 // long timeoutCount
         5: .line 423
            aload 1 /* eventTypeCounts */
            getstatic com.netflix.hystrix.HystrixEventType.THREAD_POOL_REJECTED:Lcom/netflix/hystrix/HystrixEventType;
            invokevirtual com.netflix.hystrix.HystrixEventType.ordinal:()I
            laload
            lstore 12 /* threadPoolRejectedCount */
        start local 12 // long threadPoolRejectedCount
         6: .line 424
            aload 1 /* eventTypeCounts */
            getstatic com.netflix.hystrix.HystrixEventType.SEMAPHORE_REJECTED:Lcom/netflix/hystrix/HystrixEventType;
            invokevirtual com.netflix.hystrix.HystrixEventType.ordinal:()I
            laload
            lstore 14 /* semaphoreRejectedCount */
        start local 14 // long semaphoreRejectedCount
         7: .line 426
            lload 2 /* updatedTotalCount */
            lload 6 /* successCount */
            lload 8 /* failureCount */
            ladd
            lload 10 /* timeoutCount */
            ladd
            lload 12 /* threadPoolRejectedCount */
            ladd
            lload 14 /* semaphoreRejectedCount */
            ladd
            ladd
            lstore 2 /* updatedTotalCount */
         8: .line 427
            lload 4 /* updatedErrorCount */
            lload 8 /* failureCount */
            lload 10 /* timeoutCount */
            ladd
            lload 12 /* threadPoolRejectedCount */
            ladd
            lload 14 /* semaphoreRejectedCount */
            ladd
            ladd
            lstore 4 /* updatedErrorCount */
         9: .line 428
            new com.netflix.hystrix.HystrixCommandMetrics$HealthCounts
            dup
            lload 2 /* updatedTotalCount */
            lload 4 /* updatedErrorCount */
            invokespecial com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.<init>:(JJ)V
            areturn
        end local 14 // long semaphoreRejectedCount
        end local 12 // long threadPoolRejectedCount
        end local 10 // long timeoutCount
        end local 8 // long failureCount
        end local 6 // long successCount
        end local 4 // long updatedErrorCount
        end local 2 // long updatedTotalCount
        end local 1 // long[] eventTypeCounts
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   10     0                     this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            0   10     1          eventTypeCounts  [J
            1   10     2        updatedTotalCount  J
            2   10     4        updatedErrorCount  J
            3   10     6             successCount  J
            4   10     8             failureCount  J
            5   10    10             timeoutCount  J
            6   10    12  threadPoolRejectedCount  J
            7   10    14   semaphoreRejectedCount  J
    MethodParameters:
                 Name  Flags
      eventTypeCounts  

  public static com.netflix.hystrix.HystrixCommandMetrics$HealthCounts empty();
    descriptor: ()Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 432
            getstatic com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.EMPTY:Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
         0: .line 436
            new java.lang.StringBuilder
            dup
            ldc "HealthCounts["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.errorCount:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " / "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.totalCount:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " : "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.HystrixCommandMetrics$HealthCounts.getErrorPercentage:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "%]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.netflix.hystrix.HystrixCommandMetrics$HealthCounts this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/HystrixCommandMetrics$HealthCounts;
}
SourceFile: "HystrixCommandMetrics.java"
NestHost: com.netflix.hystrix.HystrixCommandMetrics
InnerClasses:
  public HealthCounts = com.netflix.hystrix.HystrixCommandMetrics$HealthCounts of com.netflix.hystrix.HystrixCommandMetrics