类 EntranceNode

所有已实现的接口:
Node, OccupySupport, DebugSupport

public class EntranceNode extends DefaultNode

A Node represents the entrance of the invocation tree.

One Context will related to a EntranceNode, which represents the entrance of the invocation tree. New EntranceNode will be created if current context does't have one. Note that same context name will share same EntranceNode globally.

作者:
qinan.qn
另请参阅:
  • 构造器详细资料

  • 方法详细资料

    • avgRt

      public double avgRt()
      从接口复制的说明: Node
      Get average rt per second.
      指定者:
      avgRt 在接口中 Node
      覆盖:
      avgRt 在类中 StatisticNode
      返回:
      average response time per second
    • blockQps

      public double blockQps()
      从接口复制的说明: Node
      Get block request per second.
      指定者:
      blockQps 在接口中 Node
      覆盖:
      blockQps 在类中 StatisticNode
      返回:
      QPS of blocked requests
    • blockRequest

      public long blockRequest()
      从接口复制的说明: Node
      Get blocked request count per minute (totalBlockRequest).
      指定者:
      blockRequest 在接口中 Node
      覆盖:
      blockRequest 在类中 StatisticNode
      返回:
      total blocked request count per minute
    • curThreadNum

      public int curThreadNum()
      从接口复制的说明: Node
      Get current active thread count.
      指定者:
      curThreadNum 在接口中 Node
      覆盖:
      curThreadNum 在类中 StatisticNode
      返回:
      current active thread count
    • totalQps

      public double totalQps()
      从接口复制的说明: Node
      Get Node.passQps() + Node.blockQps() request per second.
      指定者:
      totalQps 在接口中 Node
      覆盖:
      totalQps 在类中 StatisticNode
      返回:
      QPS of passed and blocked requests
    • successQps

      public double successQps()
      从接口复制的说明: Node
      Get Entry.exit() request per second.
      指定者:
      successQps 在接口中 Node
      覆盖:
      successQps 在类中 StatisticNode
      返回:
      QPS of completed requests
    • passQps

      public double passQps()
      从接口复制的说明: Node
      Get pass request per second.
      指定者:
      passQps 在接口中 Node
      覆盖:
      passQps 在类中 StatisticNode
      返回:
      QPS of passed requests
    • totalRequest

      public long totalRequest()
      从接口复制的说明: Node
      Get incoming request per minute (pass + block).
      指定者:
      totalRequest 在接口中 Node
      覆盖:
      totalRequest 在类中 StatisticNode
      返回:
      total request count per minute
    • totalPass

      public long totalPass()
      从接口复制的说明: Node
      Get pass count per minute.
      指定者:
      totalPass 在接口中 Node
      覆盖:
      totalPass 在类中 StatisticNode
      返回:
      total passed request count per minute