public class io.vertx.ext.dropwizard.impl.shell.MetricsInfo extends io.vertx.ext.shell.command.AnnotatedCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.dropwizard.impl.shell.MetricsInfo
  super_class: io.vertx.ext.shell.command.AnnotatedCommand
{
  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
         0: .line 49
            aload 0 /* this */
            invokespecial io.vertx.ext.shell.command.AnnotatedCommand.<init>:()V
            return
        end local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/dropwizard/impl/shell/MetricsInfo;

  public void setName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
        start local 1 // java.lang.String name
         0: .line 56
            aload 0 /* this */
            aload 1 /* name */
            putfield io.vertx.ext.dropwizard.impl.shell.MetricsInfo.name:Ljava/lang/String;
         1: .line 57
            return
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/dropwizard/impl/shell/MetricsInfo;
            0    2     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Argument(index = 0, argName = "name")
      io.vertx.core.cli.annotations.Description(value = "the metrics name, can be a metrics prefix or a precise name")
    MethodParameters:
      Name  Flags
      name  

  public void process(io.vertx.ext.shell.command.CommandProcess);
    descriptor: (Lio/vertx/ext/shell/command/CommandProcess;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
        start local 1 // io.vertx.ext.shell.command.CommandProcess process
         0: .line 61
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.args:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* name */
        start local 2 // java.lang.String name
         1: .line 62
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.vertx:()Lio/vertx/core/Vertx;
            invokestatic io.vertx.ext.dropwizard.MetricsService.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/dropwizard/MetricsService;
            astore 3 /* metrics */
        start local 3 // io.vertx.ext.dropwizard.MetricsService metrics
         2: .line 63
            aload 3 /* metrics */
            aload 2 /* name */
            invokeinterface io.vertx.ext.dropwizard.MetricsService.getMetricsSnapshot:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 4 /* snapshot */
        start local 4 // io.vertx.core.json.JsonObject snapshot
         3: .line 64
            aload 1 /* process */
            new java.lang.StringBuilder
            dup
            aload 4 /* snapshot */
            invokevirtual io.vertx.core.json.JsonObject.encodePrettily:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.ext.shell.command.CommandProcess.write:(Ljava/lang/String;)Lio/vertx/ext/shell/command/CommandProcess;
            pop
         4: .line 65
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.end:()V
         5: .line 66
            return
        end local 4 // io.vertx.core.json.JsonObject snapshot
        end local 3 // io.vertx.ext.dropwizard.MetricsService metrics
        end local 2 // java.lang.String name
        end local 1 // io.vertx.ext.shell.command.CommandProcess process
        end local 0 // io.vertx.ext.dropwizard.impl.shell.MetricsInfo this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/ext/dropwizard/impl/shell/MetricsInfo;
            0    6     1   process  Lio/vertx/ext/shell/command/CommandProcess;
            1    6     2      name  Ljava/lang/String;
            2    6     3   metrics  Lio/vertx/ext/dropwizard/MetricsService;
            3    6     4  snapshot  Lio/vertx/core/json/JsonObject;
    MethodParameters:
         Name  Flags
      process  
}
SourceFile: "MetricsInfo.java"
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Name(value = "metrics-info")
      io.vertx.core.cli.annotations.Summary(value = "Show metrics info for the current Vert.x instance in Json format")