alpha/alpha-spec-saga-db/src/main/java/org/apache/servicecomb/pack/alpha/spec/saga/db/api/SagaDbAPIv1Impl.java [32:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Autowired
  AlphaMetricsEndpoint alphaMetricsEndpoint;

  public AlphaMetrics getMetrics() {
    AlphaMetrics alphaMetrics = new AlphaMetrics();
    alphaMetrics.setMetrics(alphaMetricsEndpoint.getMetrics());
    alphaMetrics.setNodeType(alphaMetricsEndpoint.getNodeType());
    return alphaMetrics;
  }

  @Override
  public GlobalTransaction getTransactionByGlobalTxId(String globalTxId) throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public PagingGlobalTransactions getTransactions(String state, int page, int size)
      throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public Map<String, Long> getTransactionStatistics() throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public List<GlobalTransaction> getSlowTransactions(int size) throws Exception {
    throw new NotSupportedException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



alpha/alpha-spec-tcc-db/src/main/java/org/apache/servicecomb/pack/alpha/spec/tcc/db/api/TccDbAPIv1Impl.java [32:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Autowired
  AlphaMetricsEndpoint alphaMetricsEndpoint;

  public AlphaMetrics getMetrics() {
    AlphaMetrics alphaMetrics = new AlphaMetrics();
    alphaMetrics.setMetrics(alphaMetricsEndpoint.getMetrics());
    alphaMetrics.setNodeType(alphaMetricsEndpoint.getNodeType());
    return alphaMetrics;
  }

  @Override
  public GlobalTransaction getTransactionByGlobalTxId(String globalTxId) throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public PagingGlobalTransactions getTransactions(String state, int page, int size)
      throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public Map<String, Long> getTransactionStatistics() throws Exception {
    throw new NotSupportedException();
  }

  @Override
  public List<GlobalTransaction> getSlowTransactions(int size) throws Exception {
    throw new NotSupportedException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



